CMake/Tutorials/C++11Flags: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
(Created page with "<source lang=cmake> cmake_minimum_required(VERSION 2.6) PROJECT(Test) if(UNIX) SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -std=gnu++0x") endif() # MSVC does not require...")
 
No edit summary
Line 11: Line 11:


</source>
</source>
{{CMake/Template/Footer}}

Revision as of 12:24, 24 April 2018

<source lang=cmake> cmake_minimum_required(VERSION 2.6)

PROJECT(Test)

if(UNIX)

   SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -std=gnu++0x")

endif()

  1. MSVC does not require any special flags

</source>



CMake: [Welcome | Site Map]