mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2024-11-10 14:41:50 +00:00
5360d05867
This saves the need to install Boost::Thread on each of the build systems.
13 lines
302 B
CMake
13 lines
302 B
CMake
project(updater)
|
|
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
include_directories(external)
|
|
include_directories(external/TinyThread/source)
|
|
|
|
add_subdirectory(src)
|
|
add_subdirectory(external/AnyOption)
|
|
add_subdirectory(external/minizip)
|
|
add_subdirectory(external/tinyxml)
|
|
add_subdirectory(external/TinyThread)
|
|
|