diff options
author | rtk0c <[email protected]> | 2022-05-27 17:31:04 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-05-27 17:31:04 -0700 |
commit | 6c3007295a6a8c6803933392834c974ec5f56aa0 (patch) | |
tree | eb97cf2510f90dce62db4e1cf66d829ef1c436af /CMakeLists.txt | |
parent | 30e7501b006e55bdeec0db18709d3fd4c5db86b5 (diff) |
Changeset: 41 Add logic to parse enums
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 3d349c5..19518bf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,6 +4,8 @@ project(ProjectBrussel LANGUAGES C CXX) include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) conan_basic_setup() +include(buildtools/cmake/RTTI.cmake) + find_package(OpenGL REQUIRED) add_subdirectory(3rdparty/glfw) add_subdirectory(3rdparty/glm) @@ -53,6 +55,8 @@ target_link_libraries(meta_codegen PRIVATE commonthings ) +target_flag_rtti(meta_codegen OFF) + # ============================================================================== # add_executable requires at least one source file |