diff options
Diffstat (limited to 'core/CMakeLists.txt')
-rw-r--r-- | core/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt index 9885886..40c2491 100644 --- a/core/CMakeLists.txt +++ b/core/CMakeLists.txt @@ -84,6 +84,7 @@ list(APPEND CPLT_CORE_SOURCES # UI add_source_group(Utils src/Utils/IO/Archive.cpp + src/Utils/IO/CstdioFile.cpp src/Utils/IO/DataStream.cpp src/Utils/Sigslot.cpp src/Utils/StandardDirectories.cpp @@ -215,7 +216,10 @@ function(add_executable_variant TARGET_NAME) if(CMAKE_UNITY_BUILD) message("CpltCore: - using unity build") - set_target_properties(${TARGET_NAME} PROPERTIES UNITY_BUILD_MODE GROUP) + set_target_properties(${TARGET_NAME} PROPERTIES + UNITY_BUILD_MODE GROUP + UNITY_BUILD_UNIQUE_ID "CPLT_UNITY_ID" + ) else() message("CpltCore: - using regular build") endif() |