16 lines
363 B
CMake
16 lines
363 B
CMake
find_package(Python3 COMPONENTS Interpreter Development)
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
|
find_package(Threads REQUIRED)
|
|
endif()
|
|
|
|
find_package(magic_enum REQUIRED)
|
|
find_package(CLI11 REQUIRED)
|
|
find_package(quill REQUIRED)
|
|
|
|
find_package(cpptrace REQUIRED)
|
|
|
|
if(BUILD_TESTS)
|
|
find_package(GTest REQUIRED)
|
|
endif() |