Update-Installer/CMakeLists.txt
Robert Knight 5360d05867 Remove dependency on Boost::Thread and use the TinyThread library instead.
This saves the need to install Boost::Thread on each of the build systems.
2011-08-22 14:00:00 +01:00

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)