summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2022-06-27 18:27:13 -0700
committerrtk0c <[email protected]>2022-06-27 18:27:13 -0700
commit8f0dda5eab181b0f14f2652b4e984aaaae3f258c (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /CMakeLists.txt
parentfad6a88a13ab1f888ab25ad0aae19c1d63aa0623 (diff)
Start from a clean slate
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt24
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)