codegen/CMakeLists.txt

Sun, 30 Aug 2015 04:43:14 +0300

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Sun, 30 Aug 2015 04:43:14 +0300
changeset 960
9fa260f4386e
parent 855
e16f1587ef44
permissions
-rw-r--r--

Fix crash when using "add borders" with a triangle

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()

mercurial