# ========================== # BamTools CMakeLists.txt # (c) 2010 Derek Barnett # # src/third-party/jsoncpp # ========================== # add compiler definitions add_definitions(-DBAMTOOLS_JSONCPP_LIBRARY) # (for proper exporting of library symbols) add_definitions( -fPIC ) # (attempt to force PIC compiling on CentOS, not being set on shared libs by CMake) # create jsoncpp library add_library ( jsoncpp SHARED json_reader.cpp json_value.cpp json_writer.cpp ) # set jsoncpp library properties set_target_properties( jsoncpp PROPERTIES SOVERSION 1.0.0 OUTPUT_NAME jsoncpp )