Tue, 09 Sep 2014 02:42:21 +0300
- merged selection optimization from experimental into default
cmake_minimum_required (VERSION 2.4) add_executable (codegen codegen.cpp) # # LDForge uses alternative operators. GCC and Clang use these by default but MSVC does not. # So we'll have to tell MSVC to use these alternative operators # if (MSVC) set_target_properties (codegen PROPERTIES COMPILE_FLAGS "/Za") endif()