language: Text (text 6.10)
date: 302 days 5 hours ago
link:
visibility: private
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
cmake_minimum_required(VERSION 2.8)
project(APCommandCenter)
 
find_package(wxWidgets 2.8 REQUIRED)
include("${wxWidgets_USE_FILE}")
 
set(Boost_USE_MULTITHREADED ON)
set(Boost_USE_STATIC_RUNTIME ON)
find_package(Boost 1.42.0 COMPONENTS system REQUIRED)
if (BOOST_FOUND)
  include_directories(${Boost_INCLUSE_DIRS})
  target_link_libraries(APCommandCenter ${Boost_LIBRARIES})
endif()
 
add_subdirectory(source)