System : Move all command features into separate library

When compiling the complete application, the large number of files causes the input file for a Ninja build (text response file) to become too large on some configurations. Move command features into a separate library to reduce the total file count per project/library.
This commit is contained in:
Magne Sjaastad
2020-08-30 15:24:59 +02:00
parent 053bf5db12
commit 77ef87fb3a
31 changed files with 163 additions and 113 deletions

View File

@@ -19,11 +19,11 @@ ${CMAKE_CURRENT_LIST_DIR}/RicNewAzimuthDipIntersectionFeature.cpp
${CMAKE_CURRENT_LIST_DIR}/RicCopyIntersectionsToAllViewsInCaseFeature.cpp
)
list(APPEND CODE_HEADER_FILES
list(APPEND COMMAND_CODE_HEADER_FILES
${SOURCE_GROUP_HEADER_FILES}
)
list(APPEND CODE_SOURCE_FILES
list(APPEND COMMAND_CODE_SOURCE_FILES
${SOURCE_GROUP_SOURCE_FILES}
)