view extensions/dbg_dict_dump_json/CMakeLists.txt @ 1534:c83e60f28632

dict_dcca_3gpp: simplify rule creation Refactor local_rules_definition to simplify rule creation (to avoid c99 struct initialisers that result in long lines). No change to generated rules.
author Luke Mewburn <luke@mewburn.net>
date Mon, 20 Apr 2020 12:12:42 +1000
parents 75b6ec7c70b3
children
line wrap: on
line source

PROJECT("Dictionary dump to JSON extension" C)
FD_ADD_EXTENSION(dbg_dict_dump_json dbg_dict_dump_json.cc)

# sneakily uses dictionary-internal.h
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/../../libfdproto)

INCLUDE(FindPkgConfig)

# Uses JSONCPP to write JSON files
PKG_CHECK_MODULES(JSONCPP REQUIRED jsoncpp)
INCLUDE_DIRECTORIES(${JSONCPP_INCLUDE_DIRS})
LINK_DIRECTORIES(${JSONCPP_LIBDIR})
TARGET_LINK_LIBRARIES(dbg_dict_dump_json ${JSONCPP_LIBRARIES})

####
## INSTALL section ##

INSTALL(TARGETS dbg_dict_dump_json
	LIBRARY DESTINATION ${INSTALL_EXTENSIONS_SUFFIX}
	COMPONENT freeDiameter-debug-tools)

"Welcome to our mercurial repository"