From 33a3bda3e3a2ab1d2b2b41a544ba8ad7731428b8 Mon Sep 17 00:00:00 2001 From: Tan Wang Leng Date: Sun, 3 Apr 2016 10:55:53 +0800 Subject: [PATCH] Fix missing endif() --- Sources/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/CMakeLists.txt b/Sources/CMakeLists.txt index 47c114e..58e93c6 100644 --- a/Sources/CMakeLists.txt +++ b/Sources/CMakeLists.txt @@ -604,7 +604,7 @@ option(BUILD_DEDICATED_SERVER "Compile the dedicated server, too" FALSE) if(BUILD_DEDICATED_SERVER) add_executable(SeriousSamDedicated ${ENGINE_SRCS} DedicatedServer/DedicatedServer.cpp) add_dependencies(SeriousSamDedicated ParseAllEntities) -) +endif() if(MACOSX) find_library(COCOA_FRAMEWORK Cocoa)