1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
# Place executables and shared libs under "build-dir/",
# instead of under "build-dir/rts/"
# This way, we have the build-dir structure more like the install-dir one,
# which makes testing spring in the builddir easier, eg. like this:
# cd build-dir
# SPRING_DATADIR=$(pwd) ./spring
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "../..")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}")
FIND_PACKAGE_STATIC(ZLIB REQUIRED)
LIST(APPEND unitsync_libs ${CMAKE_DL_LIBS})
LIST(APPEND unitsync_libs ${Boost_REGEX_LIBRARY} ${Boost_SYSTEM_LIBRARY} ${Boost_FILESYSTEM_LIBRARY})
LIST(APPEND unitsync_libs 7zip lua headlessStubs archives)
LIST(APPEND unitsync_libs ${ZLIB_LIBRARY})
LIST(APPEND unitsync_libs ${SPRING_MINIZIP_LIBRARY})
IF (WIN32)
LIST(APPEND unitsync_libs ${WINMM_LIBRARY})
ENDIF (WIN32)
IF (MINGW OR MSVC)
# We still need these header files,
# even if we are not going to link with SDL.
# We have them available anyway (mingwlibs).
FIND_PACKAGE(SDL2 REQUIRED)
INCLUDE_DIRECTORIES(${SDL2_INCLUDE_DIR})
ELSE (MINGW OR MSVC)
# Use a direct copy of the GL and SDL headers,
# as these may not be available on headless systems.
INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include/SDL2)
ENDIF (MINGW OR MSVC)
ADD_DEFINITIONS(-DUNITSYNC)
ADD_DEFINITIONS(${PIC_FLAG})
ADD_DEFINITIONS(-DNOT_USING_CREG)
ADD_DEFINITIONS(-DHEADLESS)
ADD_DEFINITIONS(-DNO_SOUND)
ADD_DEFINITIONS(-DBITMAP_NO_OPENGL)
ADD_DEFINITIONS(-DENABLE_DEPRECATED_FUNCTIONS)
REMOVE_DEFINITIONS(-DTHREADPOOL)
set(ENGINE_SRC_ROOT "../../rts")
INCLUDE_DIRECTORIES(${SPRING_MINIZIP_INCLUDE_DIR})
INCLUDE_DIRECTORIES(${ENGINE_SRC_ROOT}/lib/lua/include)
INCLUDE_DIRECTORIES(${ENGINE_SRC_ROOT}/lib/7zip)
INCLUDE_DIRECTORIES(${ENGINE_SRC_ROOT})
Include_Directories(${CMAKE_BINARY_DIR}/src-generated/engine)
set(main_files
"${ENGINE_SRC_ROOT}/ExternalAI/LuaAIImplHandler.cpp"
"${ENGINE_SRC_ROOT}/Game/GameVersion.cpp"
"${ENGINE_SRC_ROOT}/Lua/LuaParser.cpp"
"${ENGINE_SRC_ROOT}/Lua/LuaUtils.cpp"
"${ENGINE_SRC_ROOT}/Lua/LuaIO.cpp"
"${ENGINE_SRC_ROOT}/Map/MapParser.cpp"
"${ENGINE_SRC_ROOT}/Map/SMF/SMFMapFile.cpp"
"${ENGINE_SRC_ROOT}/Sim/Misc/SideParser.cpp"
"${ENGINE_SRC_ROOT}/System/Config/ConfigHandler.cpp"
"${ENGINE_SRC_ROOT}/System/Config/ConfigLocater.cpp"
"${ENGINE_SRC_ROOT}/System/Config/ConfigSource.cpp"
"${ENGINE_SRC_ROOT}/System/Config/ConfigVariable.cpp"
"${ENGINE_SRC_ROOT}/System/Config/ConfigLocater.cpp"
"${ENGINE_SRC_ROOT}/System/Misc/SpringTime.cpp"
"${ENGINE_SRC_ROOT}/System/Platform/CpuID.cpp"
"${ENGINE_SRC_ROOT}/System/Platform/Misc.cpp"
"${ENGINE_SRC_ROOT}/System/Platform/ScopedFileLock.cpp"
"${ENGINE_SRC_ROOT}/System/Platform/Threading.cpp"
"${ENGINE_SRC_ROOT}/System/float4.cpp"
"${ENGINE_SRC_ROOT}/System/CRC.cpp"
"${ENGINE_SRC_ROOT}/System/Info.cpp"
"${ENGINE_SRC_ROOT}/System/LogOutput.cpp"
"${ENGINE_SRC_ROOT}/System/Option.cpp"
"${ENGINE_SRC_ROOT}/System/SafeVector.cpp"
"${ENGINE_SRC_ROOT}/System/SafeCStrings.c"
"${ENGINE_SRC_ROOT}/System/TdfParser.cpp"
"${ENGINE_SRC_ROOT}/System/ThreadPool.cpp"
"${ENGINE_SRC_ROOT}/System/UriParser.cpp"
"${ENGINE_SRC_ROOT}/System/Util.cpp"
)
if (WIN32)
LIST(APPEND main_files "${ENGINE_SRC_ROOT}/System/Platform/Win/WinVersion.cpp")
else (WIN32)
LIST(APPEND main_files "${ENGINE_SRC_ROOT}/System/Platform/Linux/ThreadSupport.cpp")
endif (WIN32)
set(unitsync_files
${sources_engine_System_FileSystem}
${sources_engine_System_Threading}
${sources_engine_System_Log}
${sources_engine_System_Log_sinkFile}
${sources_engine_System_Log_sinkOutputDebugString}
${main_files}
${CMAKE_CURRENT_SOURCE_DIR}/unitsync.cpp
${CMAKE_CURRENT_SOURCE_DIR}/LuaParserAPI.cpp
)
# Add list of all exported functions to .def file to prevent decoration
if (MSVC)
LIST(APPEND unitsync_files ${CMAKE_CURRENT_SOURCE_DIR}/exports.def)
endif ()
# HACK unitsync should actually be MODULE (not SHARED),
# but the python bindings need it as SHARED,
# to be able to link to it
ADD_LIBRARY(unitsync SHARED ${unitsync_files})
Add_Dependencies(unitsync generateVersionFiles)
TARGET_LINK_LIBRARIES(unitsync ${unitsync_libs})
if (MINGW)
set_target_properties(unitsync PROPERTIES LINK_FLAGS -Wl,--add-stdcall-alias)
endif (MINGW)
FixLibName(unitsync)
install (TARGETS unitsync
RUNTIME DESTINATION ${LIBDIR}
LIBRARY DESTINATION ${LIBDIR})
Add_Subdirectory(test)
OPTION(UNITSYNC_PYTHON_BINDINGS "compile python bindings for unitsync (FIXME: broken with gcc 4.9 see #4377)" OFF)
If (UNITSYNC_PYTHON_BINDINGS)
# only add this if the submodule is present
Add_Subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/python")
EndIf()
|