view cinst/CMakeLists.txt @ 249:6a7eb102716d

Remove code duplication by unifying the certificatelist. You should now check for isInstallCert to determine wether this certificate should be installed or removed. Leaving the getInstallCertificates and getRemoveCertificates in place for compatibilty would have been easier to keep the tests stable.
author Andre Heinecke <aheinecke@intevation.de>
date Mon, 31 Mar 2014 08:06:17 +0000
parents 809eaca3898c
children fac7e1b0e558
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
)
add_executable(cinst ${CINST_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)

# ----------------------------------------------------------------------
# Mozilla nss store specific certificate installer:

find_package(NSS)

if(NSS_FOUND)
  include_directories(${NSS_INCLUDE_DIRS})
  set(MOZILLA_SOURCES
    ${CMAKE_CURRENT_SOURCE_DIR}/nss-secitemlist.c
    ${CMAKE_CURRENT_SOURCE_DIR}/mozilla.c
    )
  add_executable(mozilla ${MOZILLA_SOURCES})
  target_link_libraries(mozilla
   m13_common
   ${POLARSSL_LIBRARIES}
   ${NSS_LIBRARIES}
   ${PROFILING_LIBS})
 set_target_properties(mozilla PROPERTIES COMPILE_FLAGS "-std=c99")
 install(TARGETS mozilla DESTINATION bin)
else()
   message(STATUS "WARNING: Could not find nss. Mozilla cert installer will not be build!")
endif()

http://wald.intevation.org/projects/trustbridge/