MantisBT - CMake
View Issue Details
0001660CMakepublic2005-03-09 14:112005-04-05 13:21
Mathieu Malaterre 
Bill Hoffman 
normalmajoralways
closedfixed 
 
 
0001660: PROJECT NONE and C flags
Cmake crash with doing a PROJECT(FOO None) since on VS7 it check for c flags. One quick fix is to give dummy values:

SET(CMAKE_C_FLAGS "")
SET(CMAKE_C_FLAGS_RELEASE "")
SET(CMAKE_C_FLAGS_MINSIZEREL "")
SET(CMAKE_C_FLAGS_DEBUG "")
SET(CMAKE_C_FLAGS_RELWITHDEBINFO "")
No tags attached.
Issue History

Notes
(0002282)
Bill Hoffman   
2005-04-05 13:15   
fixed in cvs. NONE now works.