MantisBT - CMake
View Issue Details
0012148CMake(No Category)public2011-05-03 12:302011-06-18 07:41
Stephen Kelly 
Brad King 
normalminorhave not tried
closedfixed 
 
CMake 2.8.5CMake 2.8.5 
0012148: CMake docs about CMAKE_BUILD_TYPE uses wrong case for variables
http://www.cmake.org/cmake/help/cmake-2-8-docs.html#variable:CMAKE_BUILD_TYPE [^]

I added this to my CMakeLists.txt:

MESSAGE("TTTTTTTTT" ${CMAKE_C_FLAGS_Release} " -- " ${CMAKE_CXX_FLAGS_Release})

And it didn't work until I changed it to this:

MESSAGE("TTTTTTTTT" ${CMAKE_C_FLAGS_RELEASE} " -- " ${CMAKE_CXX_FLAGS_RELEASE})
No tags attached.
Issue History
2011-05-03 12:30Stephen KellyNew Issue
2011-05-03 12:53Brad KingAssigned To => Brad King
2011-05-03 12:53Brad KingStatusnew => assigned
2011-05-03 12:53Brad KingNote Added: 0026425
2011-05-03 12:53Brad KingStatusassigned => closed
2011-05-03 12:53Brad KingResolutionopen => fixed
2011-06-18 07:41David ColeFixed in Version => CMake 2.8.5
2011-06-18 07:41David ColeTarget Version => CMake 2.8.5

Notes
(0026425)
Brad King   
2011-05-03 12:53   
Fixed, thanks:

http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d7d71ebd [^]