This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit 8f235b728ee99be69656ec7674fe160dab64feaf | |
Author: faramir118 <[email protected]> | |
Date: Sat Feb 4 13:59:54 2012 -0600 | |
guard against concurrent read/write access to navMesh | |
Need to add -DMMAP_CONCURRENCY=1 to cmake | |
visual studio support coming later | |
diff --git a/src/game/CMakeLists.txt b/src/game/CMakeLists.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ########## Project setup ########## | |
PROJECT(MMAP) | |
CMAKE_MINIMUM_REQUIRED(VERSION 2.4.5) | |
# ######### General setup ########## | |
INCLUDE_DIRECTORIES(${MMAP_SOURCE_DIR}) | |
INCLUDE_DIRECTORIES(${MMAP_SOURCE_DIR}/Debug) | |
INCLUDE_DIRECTORIES(${MMAP_SOURCE_DIR}/../../../dep/include/g3dlite) | |
INCLUDE_DIRECTORIES(${MMAP_SOURCE_DIR}/../../../dep/include/zlib) |