Mercurial > trustbridge
changeset 101:7e2d08555112
Make cinst cmakelist relative so it can be used standalone
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Fri, 21 Mar 2014 14:32:58 +0000 |
parents | 8fa273791242 |
children | c879a709310d |
files | cinst/CMakeLists.txt |
diffstat | 1 files changed, 14 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/cinst/CMakeLists.txt Fri Mar 21 12:15:29 2014 +0000 +++ b/cinst/CMakeLists.txt Fri Mar 21 14:32:58 2014 +0000 @@ -1,19 +1,26 @@ +cmake_minimum_required(VERSION 2.8) + set(CMAKE_AUTOMOC OFF) +set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/../cmake/") + +find_package(PolarSSL) + include_directories(${POLARSSL_INCLUDE_DIR}) -include_directories(${CMAKE_SOURCE_DIR}/common) +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../common) set(CINST_SOURCES - ${CMAKE_SOURCE_DIR}/cinst/main.c - ${CMAKE_SOURCE_DIR}/common/listutil.c - ${CMAKE_SOURCE_DIR}/common/strhelp.c + ${CMAKE_CURRENT_SOURCE_DIR}/main.c + ${CMAKE_CURRENT_SOURCE_DIR}/../common/listutil.c + ${CMAKE_CURRENT_SOURCE_DIR}/../common/strhelp.c ) set(MOZILLA_SOURCES - ${CMAKE_SOURCE_DIR}/cinst/mozilla.c + ${CMAKE_CURRENT_SOURCE_DIR}/mozilla.c ) add_executable(cinst ${CINST_SOURCES}) +add_executable(mozilla ${MOZILLA_SOURCES}) if (WIN32) set(WIN_EXTRA_LIBS -lcrypt32) endif(WIN32) @@ -23,3 +30,5 @@ ${POLARSSL_LIBRARIES} ${WIN_EXTRA_LIBS}) +target_link_libraries(mozilla + ${PROFILING_LIBS})