Mercurial > trustbridge
comparison cinst/CMakeLists.txt @ 324:eff8e7ce4dae
Add first compiling implementation of nssstore_win.c
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Mon, 07 Apr 2014 13:34:50 +0000 |
parents | 2fd69803d219 |
children | d10d9bc2e84f |
comparison
equal
deleted
inserted
replaced
323:31ba7ed4d50f | 324:eff8e7ce4dae |
---|---|
5 include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../common) | 5 include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../common) |
6 | 6 |
7 set(CINST_SOURCES | 7 set(CINST_SOURCES |
8 ${CMAKE_CURRENT_SOURCE_DIR}/windowsstore.c | 8 ${CMAKE_CURRENT_SOURCE_DIR}/windowsstore.c |
9 ${CMAKE_CURRENT_SOURCE_DIR}/nssstore_linux.c | 9 ${CMAKE_CURRENT_SOURCE_DIR}/nssstore_linux.c |
10 ${CMAKE_CURRENT_SOURCE_DIR}/nssstore_win.c | |
10 ${CMAKE_CURRENT_SOURCE_DIR}/main.c | 11 ${CMAKE_CURRENT_SOURCE_DIR}/main.c |
11 ) | 12 ) |
12 add_executable(cinst ${CINST_SOURCES}) | 13 add_executable(cinst ${CINST_SOURCES}) |
13 | 14 |
14 if (WIN32) | 15 if (WIN32) |
15 set(WIN_EXTRA_LIBS -lcrypt32) | 16 set(WIN_EXTRA_LIBS -lcrypt32 -luserenv) |
16 endif(WIN32) | 17 endif(WIN32) |
17 | 18 |
18 target_link_libraries(cinst | 19 target_link_libraries(cinst |
19 m13_common | 20 m13_common |
20 ${PROFILING_LIBS} | 21 ${PROFILING_LIBS} |