Mercurial > trustbridge
comparison cinst/CMakeLists.txt @ 68:8ffbb48528ae
Add certificate installation for windows
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Tue, 18 Mar 2014 18:28:15 +0000 |
parents | 3f6378647371 |
children | 7e2d08555112 |
comparison
equal
deleted
inserted
replaced
67:1bf41957418f | 68:8ffbb48528ae |
---|---|
12 set(MOZILLA_SOURCES | 12 set(MOZILLA_SOURCES |
13 ${CMAKE_SOURCE_DIR}/cinst/mozilla.c | 13 ${CMAKE_SOURCE_DIR}/cinst/mozilla.c |
14 ) | 14 ) |
15 | 15 |
16 add_executable(cinst ${CINST_SOURCES}) | 16 add_executable(cinst ${CINST_SOURCES}) |
17 if (WIN32) | |
18 set(WIN_EXTRA_LIBS -lcrypt32) | |
19 endif(WIN32) | |
17 | 20 |
18 target_link_libraries(cinst | 21 target_link_libraries(cinst |
19 ${PROFILING_LIBS} | 22 ${PROFILING_LIBS} |
20 ${POLARSSL_LIBRARIES}) | 23 ${POLARSSL_LIBRARIES} |
24 ${WIN_EXTRA_LIBS}) | |
25 |