codegen/CMakeLists.txt

2014-09-07

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Sun, 07 Sep 2014 22:55:44 +0300 (2014-09-07)
changeset 888
7ad8fb667084
parent 855
e16f1587ef44
permissions
-rw-r--r--

- improved part downloader: now asks for the path instead of just directing the user to settings. auto-fix download now configurable and opt-in

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