Mercurial > trustbridge
view cinst/CMakeLists.txt @ 105:faf96d9a1010
Remove duplicated findpolarssl in cinst. You need to run cmake from the toplevel
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Fri, 21 Mar 2014 14:56:29 +0000 |
parents | f61d94d7893e |
children | 65941f3d5db8 |
line wrap: on
line source
cmake_minimum_required(VERSION 2.8) set(CMAKE_AUTOMOC OFF) include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../common) set(CINST_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/main.c ) set(MOZILLA_SOURCES ${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) target_link_libraries(cinst m13_common ${PROFILING_LIBS} ${POLARSSL_LIBRARIES} ${WIN_EXTRA_LIBS}) target_link_libraries(mozilla ${PROFILING_LIBS})