diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index 1a05b14..0000000 --- a/CMakeLists.txt +++ /dev/null @@ -1,24 +0,0 @@ -cmake_minimum_required(VERSION 3.18) -project(Cplt LANGUAGES CXX) -set(CMAKE_CXX_STANDARD 20) -set(CMAKE_CXX_STANDARD_REQUIRED ON) - -option(FORCE_COLORED_OUTPUT "Always produce ANSI-colored output (GNU/Clang only)." ON) -if(FORCE_COLORED_OUTPUT) - if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") - add_compile_options(-fdiagnostics-color=always) - elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang") - add_compile_options(-fcolor-diagnostics) - endif() -endif() - -set(LINUX ${CMAKE_SYSTEM_NAME} MATCHES "Linux") - -include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) -conan_basic_setup() - -add_subdirectory(3rdparty/imgui) -add_subdirectory(3rdparty/implot) -add_subdirectory(3rdparty/imgui-node-editor) -add_subdirectory(3rdparty/sqlitecpp) -add_subdirectory(core) |