2011-08-19 18:59:21 +00:00
|
|
|
project(updater)
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 2.6)
|
2011-08-29 16:40:25 +00:00
|
|
|
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules")
|
2011-08-19 18:59:21 +00:00
|
|
|
|
|
|
|
include_directories(external)
|
2011-08-22 13:00:00 +00:00
|
|
|
include_directories(external/TinyThread/source)
|
2011-08-19 18:59:21 +00:00
|
|
|
|
2011-08-22 15:37:53 +00:00
|
|
|
if (WIN32)
|
|
|
|
include_directories(external/zlib/)
|
2011-08-23 18:54:52 +00:00
|
|
|
include_directories(external/win32cpp/include)
|
2011-08-22 15:37:53 +00:00
|
|
|
endif()
|
|
|
|
|
2011-08-23 15:46:09 +00:00
|
|
|
if (APPLE)
|
2011-09-02 13:16:47 +00:00
|
|
|
# Build the updater as a dual 32/64bit binary. If only one architecture
|
|
|
|
# is required, removing the other architecture will reduce the size
|
|
|
|
# of the updater binary
|
2011-08-23 15:46:09 +00:00
|
|
|
set(CMAKE_OSX_ARCHITECTURES i386;x86_64)
|
2011-08-30 11:53:09 +00:00
|
|
|
|
|
|
|
# Build the updater so that it works on OS X 10.5 and above.
|
2011-08-30 17:24:48 +00:00
|
|
|
# If you are building with XCode 4 or newer, you will need to up
|
2011-08-30 11:53:09 +00:00
|
|
|
# this target - depending on the versions of the Mac OS X SDK that
|
|
|
|
# are available to build with in /Developer/SDKs/
|
|
|
|
|
|
|
|
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.5)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mmacosx-version-min=${CMAKE_OSX_DEPLOYMENT_TARGET}")
|
|
|
|
set(CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX${CMAKE_OSX_DEPLOYMENT_TARGET}.sdk")
|
2011-08-23 15:46:09 +00:00
|
|
|
endif()
|
|
|
|
|
2011-08-19 18:59:21 +00:00
|
|
|
add_subdirectory(src)
|
|
|
|
add_subdirectory(external/AnyOption)
|
2011-08-19 23:38:05 +00:00
|
|
|
add_subdirectory(external/minizip)
|
2011-08-19 18:59:21 +00:00
|
|
|
add_subdirectory(external/tinyxml)
|
2011-08-22 13:00:00 +00:00
|
|
|
add_subdirectory(external/TinyThread)
|
2011-08-19 18:59:21 +00:00
|
|
|
|