Mercurial > trustbridge
view cinst/CMakeLists.txt @ 168:f100861dad8f
Added simple portable function to test if an file exists.
author | Sascha Wilde <wilde@intevation.de> |
---|---|
date | Tue, 25 Mar 2014 13:08:59 +0100 |
parents | bf4bfd8843bd |
children | 642d81594665 |
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}/windowsstore.c ${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}) install(TARGETS cinst DESTINATION bin) target_link_libraries(mozilla m13_common ${POLARSSL_LIBRARIES} ${PROFILING_LIBS}) install(TARGETS mozilla DESTINATION bin)