diff options
Diffstat (limited to '')
-rw-r--r-- | external/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt index d370f1a..b3cc884 100644 --- a/external/CMakeLists.txt +++ b/external/CMakeLists.txt @@ -7,4 +7,7 @@ file(GLOB_RECURSE HEADERS "./include/*") include_directories(./include/) -add_library(deps STATIC ${SOURCES} ${HEADERS})
\ No newline at end of file +add_library(deps STATIC ${SOURCES} ${HEADERS}) + +file(GLOB OPTICK_SRC "./optick/*.cpp") +add_library(optick STATIC ${OPTICK_SRC})
\ No newline at end of file |