Re: [cmake-developers] Possibly an obscure bug

2016-06-15 Thread Chuck Atkins
This isn't a bug but more of a weird side effect of having your executable named the same as an include file and adding the destination directory for the executable in the include path. The same thing would happen if your executable was named foo and you had "#include ". By setting

Re: [cmake-developers] Possibly an obscure bug

2016-06-15 Thread Ben Boeckel
On Wed, Jun 15, 2016 at 21:34:27 +0300, Binkie Pinkie wrote: > build$ make > Scanning dependencies of target list > make[2]: Circular blink/CMakeFiles/list.dir/main.cpp.o <- blink/list > dependency dropped. > [ 50%] Building CXX object blink/CMakeFiles/list.dir/main.cpp.o > In file included from

[cmake-developers] Possibly an obscure bug

2016-06-15 Thread Binkie Pinkie
Hi, TL;DR: The project compiles fine first time, but after touching a source file to trigger a recompile, the recompilation fails with a large list of errors. To reproduce this must be done: 1) Have set(CMAKE_INCLUDE_CURRENT_DIR ON) 2) call your executable "list" 3) #include anywhere in your