33 lines
604 B
CMake
33 lines
604 B
CMake
INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIRS})
|
|
INCLUDE_DIRECTORIES(${ASIO_INCLUDE_DIR})
|
|
|
|
SET(TARGET_SRC
|
|
connection.cpp
|
|
io_service_pool.cpp
|
|
mime_types.cpp
|
|
reply.cpp
|
|
request_handler.cpp
|
|
request_parser.cpp
|
|
server.cpp
|
|
RestHttpDevice.cpp
|
|
ReaderWriterRestHttpDevice.cpp
|
|
)
|
|
|
|
SET(TARGET_H
|
|
connection.hpp
|
|
header.hpp
|
|
io_service_pool.hpp
|
|
mime_types.hpp
|
|
reply.hpp
|
|
request_handler.hpp
|
|
request_parser.hpp
|
|
request.hpp
|
|
server.hpp
|
|
RestHttpDevice.hpp
|
|
)
|
|
|
|
SET(TARGET_ADDED_LIBRARIES osgPresentation )
|
|
|
|
#### end var setup ###
|
|
SETUP_PLUGIN(resthttp)
|