You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
231 B
10 lines
231 B
SET(JSON_SPIRIT_SRCS
|
|
json_spirit_reader.cpp
|
|
json_spirit_value.cpp
|
|
json_spirit_writer.cpp)
|
|
|
|
FIND_PACKAGE(Boost 1.34 REQUIRED)
|
|
INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIR})
|
|
|
|
ADD_LIBRARY(json_spirit STATIC ${JSON_SPIRIT_SRCS})
|
|
|
|
|