Re: [CMake] Selecting /Ox when compiling with VisualC++

2011-10-13 Thread Radio młodych bandytów
string(REPLACE "/O2" "/Ox" CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE}") Repeat as necessary with other variables and other /O values... 2011/10/13 Radio młodych bandytów: I have code like below: IF(MSVC) set(CMAKE_CXX_FLAGS /Ox) set(CMAKE_C_FLAGS /

[CMake] Selecting /Ox when compiling with VisualC++

2011-10-13 Thread Radio młodych bandytów
I have code like below: IF(MSVC) set(CMAKE_CXX_FLAGS /Ox) set(CMAKE_C_FLAGS /Ox) ENDIF(MSVC) However, the flag is ignored and CMake generates projects that use /O2. How can I fix it? -- Twoje radio -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www