|
Notes |
|
|
(0020074)
|
|
Bill Hoffman
|
|
2010-04-05 11:38
|
|
|
What generator are you using? |
|
|
|
(0020075)
|
|
Dmytro Skrypnyk
|
|
2010-04-05 11:43
|
|
|
cmake -G "NMake Makefiles" |
|
|
|
(0020076)
|
|
Bill Hoffman
|
|
2010-04-05 13:53
|
|
Can you create a small project:
project(foo)
add_library(bar bar.c)
Then run CMake on it with that generator, and tar up the build tree, and attach the tar gz, or zip to this bug? |
|
|
|
(0020077)
|
|
Dmytro Skrypnyk
|
|
2010-04-06 06:36
|
|
project(foo CXX)
add_library(bar bar.cpp)
if(CMAKE_CL_64)
message("64-bit microsoft compiler found")
else(CMAKE_CL_64)
message("64-bit microsoft compiler NOT found")
endif(CMAKE_CL_64)
If I remove "CXX" in project command then all ok. |
|
|
|
(0041678)
|
|
Kitware Robot
|
|
2016-06-10 14:27
|
|
Resolving issue as `moved`.
This issue tracker is no longer used. Further discussion of this issue may take place in the current CMake Issues page linked in the banner at the top of this page. |
|