JSON Marshalling, updates from code review
[gssweb.git] / json_gssapi / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.8)
2
3 project(json_gssapi)
4
5 add_executable(json_gssapi src/GSSException.cpp src/GSSCreateSecContextCommand.cpp src/GSSCommand.cpp src/util_json.cpp main.cpp)
6 target_link_libraries(json_gssapi gssapi_krb5 jansson)
7
8
9 set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake_modules/")
10 FIND_PACKAGE(CPPUNIT REQUIRED)
11
12 install(TARGETS json_gssapi RUNTIME DESTINATION bin)
13
14 add_subdirectory(src)
15
16 add_subdirectory(test)