Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit bb7dedd

Browse files
committed
add common to store reusable classes abstract classes etc
1 parent 8630779 commit bb7dedd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ else()
7676
endif()
7777

7878
aux_source_directory(controllers CTL_SRC)
79+
aux_source_directory(common COMMON_SRC)
7980
# aux_source_directory(filters FILTER_SRC) aux_source_directory(plugins
8081
# PLUGIN_SRC) aux_source_directory(models MODEL_SRC)
8182

@@ -86,7 +87,7 @@ aux_source_directory(controllers CTL_SRC)
8687

8788
target_include_directories(${PROJECT_NAME} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
8889
# ${CMAKE_CURRENT_SOURCE_DIR}/models)
89-
target_sources(${PROJECT_NAME} PRIVATE ${CTL_SRC})
90+
target_sources(${PROJECT_NAME} PRIVATE ${CTL_SRC} ${COMMON_SRC})
9091
# ${FILTER_SRC} ${PLUGIN_SRC} ${MODEL_SRC})
9192
# ##############################################################################
9293
# uncomment the following line for dynamically loading views set_property(TARGET

0 commit comments

Comments
 (0)