]> git.donarmstrong.com Git - bamtools.git/blob - src/third_party/jsoncpp/CMakeLists.txt
Migrated to CMake build system.
[bamtools.git] / src / third_party / jsoncpp / CMakeLists.txt
1 # ==========================
2 # BamTools CMakeLists.txt
3 # (c) 2010 Derek Barnett
4 #
5 # src/third-party/jsoncpp
6 # ==========================
7
8 # add compiler definitions 
9 #add_definitions(-DJSONCPP_LIBRARY) # (for proper exporting of library symbols)
10
11 # create jsoncpp library
12 add_library ( jsoncpp SHARED 
13               json_reader.cpp
14               json_value.cpp
15               json_writer.cpp
16             )
17
18 # set jsoncpp library properties
19 set_target_properties( jsoncpp PROPERTIES
20                        SOVERSION   1.0.0
21                        OUTPUT_NAME jsoncpp
22                      )