summaryrefslogtreecommitdiff
path: root/library/CMakeLists.txt
diff options
context:
space:
mode:
authorTimothy Collett2012-07-02 11:02:48 -0400
committerTimothy Collett2012-07-02 11:02:48 -0400
commit421e5fd82cde1f076f3de7326b0303dd6585a4ae (patch)
tree97c106c0854964b6cb129dd94a28d353af1de3ec /library/CMakeLists.txt
parent6f433ff58ff264a608436a1bc4c8a3ef2f4995b5 (diff)
downloaddfhack-421e5fd82cde1f076f3de7326b0303dd6585a4ae.tar.gz
dfhack-421e5fd82cde1f076f3de7326b0303dd6585a4ae.tar.bz2
dfhack-421e5fd82cde1f076f3de7326b0303dd6585a4ae.tar.xz
Swap order of includes to work around silly compiler/assembler bug on OS X
Diffstat (limited to 'library/CMakeLists.txt')
-rw-r--r--library/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/CMakeLists.txt b/library/CMakeLists.txt
index 73f6c9ec..75485ff2 100644
--- a/library/CMakeLists.txt
+++ b/library/CMakeLists.txt
@@ -8,8 +8,8 @@ IF(UNIX)
OPTION(CONSOLE_NO_CATCH "Make the console not catch 'CTRL+C' events for easier debugging." OFF)
ENDIF()
-include_directories (include)
include_directories (proto)
+include_directories (include)
SET(PERL_EXECUTABLE "perl" CACHE FILEPATH "This is the perl executable to run in the codegen step. Tweak it if you need to run a specific one.")