980fa8db67
CMake-using applications works to include websocketpp. Also, a lot of cleanup.
7 lines
218 B
CMake
7 lines
218 B
CMake
file (GLOB SDIRS RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *)
|
|
foreach (SUBDIR ${SDIRS})
|
|
if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIR}/CMakeLists.txt")
|
|
add_subdirectory (${SUBDIR})
|
|
endif ()
|
|
endforeach ()
|