Mercurial > trustbridge
view cinst/CMakeLists.txt @ 154:3349c9596043
Added commandline arguemnt '--tray' to hide or show the mainwindow.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Tue, 25 Mar 2014 08:59:58 +0100 |
parents | 4904fe01055d |
children | bf4bfd8843bd |
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 ${PROFILING_LIBS}) install(TARGETS mozilla DESTINATION bin)