2012-03-13 07:46:48 -06:00
|
|
|
#list depends here.
|
|
|
|
add_subdirectory(lua)
|
|
|
|
add_subdirectory(md5)
|
|
|
|
add_subdirectory(protobuf)
|
2016-06-26 17:48:55 -06:00
|
|
|
|
|
|
|
# Don't build tinyxml if it's being externally linked against.
|
|
|
|
if(NOT TinyXML_FOUND)
|
|
|
|
add_subdirectory(tinyxml)
|
|
|
|
endif()
|
|
|
|
|
2012-03-13 07:46:48 -06:00
|
|
|
add_subdirectory(tthread)
|
2018-06-14 11:22:40 -06:00
|
|
|
OPTION(JSONCPP_WITH_TESTS "Compile and (for jsoncpp_check) run JsonCpp test executables" OFF)
|
|
|
|
OPTION(JSONCPP_WITH_POST_BUILD_UNITTEST "Automatically run unit-tests as a post build step" OFF)
|
2018-07-08 22:16:08 -06:00
|
|
|
add_subdirectory(jsoncpp-sub EXCLUDE_FROM_ALL)
|
2012-03-13 10:10:46 -06:00
|
|
|
# build clsocket static and only as a dependency. Setting those options here overrides its own default settings.
|
|
|
|
OPTION(CLSOCKET_SHARED "Build clsocket lib as shared." OFF)
|
|
|
|
OPTION(CLSOCKET_DEP_ONLY "Build for use inside other CMake projects as dependency." ON)
|
|
|
|
add_subdirectory(clsocket)
|
2015-01-01 19:35:23 -07:00
|
|
|
IDE_FOLDER(clsocket "Depends")
|