summaryrefslogtreecommitdiff
path: root/tools/policy_table_validator/CMakeLists.txt
blob: 2a372d7fface3918f88979c59bbbf558fce502d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#set( CMAKE_VERBOSE_MAKEFILE on )

include_directories(
	${CMAKE_SOURCE_DIR}/src/components/policy/src/policy/
        ${CMAKE_SOURCE_DIR}/src/components/rpc_base/include/
        ${CMAKE_SOURCE_DIR}/src/components/utils/include/
	${JSONCPP_INCLUDE_DIRECTORY}
)


link_directories (
    ${CMAKE_BINARY_DIR}/src/components/policy/src/policy/policy_table/table_struct/
    ${CMAKE_BINARY_DIR}/src/components/rpc_base/
)


set(LIBRARIES
  policy_struct
  rpc_base
)

set (SOURCES
  main.cpp 
)

add_executable(policyValidator ${SOURCES})
target_link_libraries(policyValidator ${LIBRARIES})