Skip to content

Commit

Permalink
Core and Gui create now their CMake file list
Browse files Browse the repository at this point in the history
  • Loading branch information
jsmtux committed Jul 5, 2024
1 parent 3b76dac commit 1ce4be0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
5 changes: 4 additions & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ ADD_SUBDIRECTORY(common)
ADD_SUBDIRECTORY(core)
ADD_SUBDIRECTORY(gui)

LIST(APPEND LMMS_SRCS ${LMMS_COMMON_SRCS})
LIST(APPEND LMMS_SRCS
${LMMS_COMMON_SRCS}
${LMMS_CORE_SRCS}
${LMMS_GUI_SRCS})

INCLUDE_DIRECTORIES(
"${CMAKE_CURRENT_BINARY_DIR}"
Expand Down
4 changes: 1 addition & 3 deletions src/core/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
set(LMMS_SRCS
${LMMS_SRCS}

set(LMMS_CORE_SRCS
core/AudioEngine.cpp
core/AudioEngineProfiler.cpp
core/AudioEngineWorkerThread.cpp
Expand Down
3 changes: 1 addition & 2 deletions src/gui/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
SET(LMMS_SRCS
${LMMS_SRCS}
SET(LMMS_GUI_SRCS
gui/ActionGroup.cpp
gui/AudioAlsaSetupWidget.cpp
gui/AudioDeviceSetupWidget.cpp
Expand Down

0 comments on commit 1ce4be0

Please sign in to comment.