CMakeLists.txt 579 Bytes
Newer Older
1 2 3 4
include_directories(../3rdpart)
file(GLOB jsoncpp_src_list ../3rdpart/jsoncpp/*.cpp ../3rdpart/jsoncpp/*.h )
add_library(jsoncpp STATIC ${jsoncpp_src_list})

xiongziliang committed
5 6 7 8 9 10 11 12 13

if (CMAKE_SYSTEM_NAME MATCHES "Windows")
	set(MediaServer_src_list ./WebApi.cpp ./WebHook.cpp main.cpp)
else()
	file(GLOB MediaServer_src_list ./*.cpp ./*.h)
endif()

message(STATUS ${MediaServer_src_list})

14
add_executable(MediaServer ${MediaServer_src_list})
xiongziliang committed
15 16 17 18 19

if(WIN32)
	set_target_properties(MediaServer PROPERTIES COMPILE_FLAGS  ${VS_FALGS} )
endif()

20 21 22
target_link_libraries(MediaServer jsoncpp ${LINK_LIB_LIST})