source: verona/CMakeLists.txt @ 47:96eade91ea9c

Last change on this file since 47:96eade91ea9c was 47:96eade91ea9c, checked in by Nikita Kozlov <nikita@…>, 3 years ago

merge

File size: 577 bytes
Line 
1project(verona)
2
3cmake_minimum_required(VERSION 2.6)
4
5set(VERONA_VERSION_MAJOR 0)
6set(VERONA_VERSION_MINOR 1)
7set(VERONA_VERSION_MICRO 0)
8set(VERONA_VERSION_STRING "0.1.0")
9
10set(CMAKE_MODULE_PATH
11  ${CMAKE_SOURCE_DIR}
12  ${CMAKE_SOURCE_DIR}/cmake/Modules
13)
14
15include(DefineCompilerFlags)
16include(CPackConfig)
17include(Macros)
18
19if (CMAKE_SYSTEM_NAME MATCHES Linux)
20 set(LINUX True)
21 message("Building for ${CMAKE_SYSTEM_NAME}")
22endif(CMAKE_SYSTEM_NAME MATCHES Linux)
23
24if(CMAKE_UNDER_CE)
25  subdirs(wcecompat)
26endif(CMAKE_UNDER_CE)
27
28subdirs(libosip2 libeXosip2 oRTP phapi phcpp)
29
30
31
32
Note: See TracBrowser for help on using the repository browser.