diff options
author | rtk0c <[email protected]> | 2022-06-30 21:41:51 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-06-30 21:41:51 -0700 |
commit | 68b2695ee31504908122b48a5d36b77a9c983799 (patch) | |
tree | c59124819baabce71481306df88fdf569e3dcc39 /CMakeLists.txt | |
parent | 7fe47a9d5b1727a61dc724523b530762f6d6ba19 (diff) |
Split logic into separate .cmake files
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0edd517..ef5c85d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,6 +15,10 @@ set(LINUX ${CMAKE_SYSTEM_NAME} MATCHES "Linux") include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) conan_basic_setup() +include(cmake/Exceptions.cmake) +include(cmake/RTTI.cmake) +include(cmake/Win32Subsystem.cmake) + add_subdirectory(3rdparty/iconfontheaders) add_subdirectory(3rdparty/imgui) add_subdirectory(3rdparty/implot) |