Move the code for the Trace Analyzer to the open source tree and only keep the extensions behind a compiler flag.
10 lines
272 B
CMake
10 lines
272 B
CMake
file(GLOB sub_dirs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/*)
|
|
|
|
message(STATUS " Standards:")
|
|
|
|
FOREACH(sub_dir ${sub_dirs})
|
|
IF(IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/${sub_dir}")
|
|
add_subdirectory(${sub_dir})
|
|
ENDIF()
|
|
ENDFOREACH()
|