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