Skip to content

Commit

Permalink
[tmp] fake build
Browse files Browse the repository at this point in the history
  • Loading branch information
cbjeukendrup committed Sep 19, 2024
1 parent 8a2a0e9 commit b141c74
Show file tree
Hide file tree
Showing 3 changed files with 198 additions and 198 deletions.
84 changes: 42 additions & 42 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,64 +19,64 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.

# Framework, should be first to work pch
add_subdirectory(framework)
# add_subdirectory(framework)

# App (main)
add_subdirectory(app)

# Modules
if (MUE_BUILD_APPSHELL_MODULE)
add_subdirectory(appshell)
endif()
# # Modules
# if (MUE_BUILD_APPSHELL_MODULE)
# add_subdirectory(appshell)
# endif()

if (MUE_BUILD_BRAILLE_MODULE)
add_subdirectory(braille)
endif()
# if (MUE_BUILD_BRAILLE_MODULE)
# add_subdirectory(braille)
# endif()

add_subdirectory(commonscene)
add_subdirectory(context)
# add_subdirectory(commonscene)
# add_subdirectory(context)

if (MUE_BUILD_CONVERTER_MODULE)
add_subdirectory(converter)
endif()
# if (MUE_BUILD_CONVERTER_MODULE)
# add_subdirectory(converter)
# endif()

add_subdirectory(engraving)
# add_subdirectory(engraving)

add_subdirectory(importexport)
# add_subdirectory(importexport)

if (MUE_BUILD_INSPECTOR_MODULE)
add_subdirectory(inspector)
endif()
# if (MUE_BUILD_INSPECTOR_MODULE)
# add_subdirectory(inspector)
# endif()

if (MUE_BUILD_INSTRUMENTSSCENE_MODULE)
add_subdirectory(instrumentsscene)
endif()
# if (MUE_BUILD_INSTRUMENTSSCENE_MODULE)
# add_subdirectory(instrumentsscene)
# endif()

if (MUE_BUILD_NOTATION_MODULE)
add_subdirectory(notation)
endif()
# if (MUE_BUILD_NOTATION_MODULE)
# add_subdirectory(notation)
# endif()

if (MUE_BUILD_PALETTE_MODULE)
add_subdirectory(palette)
endif()
# if (MUE_BUILD_PALETTE_MODULE)
# add_subdirectory(palette)
# endif()

if (MUE_BUILD_PLAYBACK_MODULE)
add_subdirectory(playback)
endif()
# if (MUE_BUILD_PLAYBACK_MODULE)
# add_subdirectory(playback)
# endif()

add_subdirectory(print)
# add_subdirectory(print)

if (MUE_BUILD_PROJECT_MODULE)
add_subdirectory(project)
endif()
# if (MUE_BUILD_PROJECT_MODULE)
# add_subdirectory(project)
# endif()

if (MUSE_MODULE_WORKSPACE)
add_subdirectory(workspacescene)
endif()
# if (MUSE_MODULE_WORKSPACE)
# add_subdirectory(workspacescene)
# endif()

# Stubs
add_subdirectory(stubs)
# # Stubs
# add_subdirectory(stubs)

if (OS_IS_WASM)
add_subdirectory(wasmtest)
endif()
# if (OS_IS_WASM)
# add_subdirectory(wasmtest)
# endif()
196 changes: 98 additions & 98 deletions src/app/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -126,96 +126,96 @@ endif()
###########################################
set(LINK_LIB
${QT_LIBRARIES}
muse::global
muse::draw
muse::network

braille
muse::diagnostics
engraving
muse::actions
muse::accessibility
context
muse::shortcuts
muse::workspace
workspacescene
muse::audio
muse::mpe
muse::midi
muse::learn
notation
project
print
commonscene
palette
inspector
playback
instrumentsscene
muse::vst
muse::update
# muse::global
# muse::draw
# muse::network

# braille
# muse::diagnostics
# engraving
# muse::actions
# muse::accessibility
# context
# muse::shortcuts
# muse::workspace
# workspacescene
# muse::audio
# muse::mpe
# muse::midi
# muse::learn
# notation
# project
# print
# commonscene
# palette
# inspector
# playback
# instrumentsscene
# muse::vst
# muse::update
)

if (MUSE_MODULE_UI)
list(APPEND LINK_LIB muse::ui)
list(APPEND LINK_LIB muse::uicomponents)
list(APPEND LINK_LIB muse::dockwindow)
endif()

if (MUSE_MODULE_AUDIOPLUGINS)
list(APPEND LINK_LIB muse::audioplugins)
endif()

if (MUE_BUILD_CONVERTER_MODULE)
list(APPEND LINK_LIB converter)
endif()

if (MUE_BUILD_APPSHELL_MODULE)
list(APPEND LINK_LIB appshell)
endif()

if (NOT CC_IS_EMSCRIPTEN)
list(APPEND LINK_LIB muse::cloud)
list(APPEND LINK_LIB muse::languages)
list(APPEND LINK_LIB muse::multiinstances)

if (MUSE_MODULE_EXTENSIONS)
list(APPEND LINK_LIB muse::extensions)
endif()

if (MUE_BUILD_IMPORTEXPORT_MODULE)
set(LINK_LIB ${LINK_LIB}
iex_musicxml
iex_bb
iex_bww
iex_capella
iex_guitarpro
iex_midi
iex_musedata
iex_ove
iex_audioexport
iex_imagesexport
iex_mei
)

if (MUE_BUILD_VIDEOEXPORT_MODULE)
list(APPEND LINK_LIB iex_videoexport)
endif()
else()
if (MUE_BUILD_IMAGESEXPORT_MODULE)
list(APPEND LINK_LIB iex_imagesexport)
endif()
endif()

endif()


if (MUSE_MODULE_AUTOBOT)
list(APPEND LINK_LIB muse::autobot)
endif()

if (MUSE_MODULE_MUSESAMPLER)
list(APPEND LINK_LIB muse::musesampler)
endif()
# if (MUSE_MODULE_UI)
# list(APPEND LINK_LIB muse::ui)
# list(APPEND LINK_LIB muse::uicomponents)
# list(APPEND LINK_LIB muse::dockwindow)
# endif()

# if (MUSE_MODULE_AUDIOPLUGINS)
# list(APPEND LINK_LIB muse::audioplugins)
# endif()

# if (MUE_BUILD_CONVERTER_MODULE)
# list(APPEND LINK_LIB converter)
# endif()

# if (MUE_BUILD_APPSHELL_MODULE)
# list(APPEND LINK_LIB appshell)
# endif()

# if (NOT CC_IS_EMSCRIPTEN)
# list(APPEND LINK_LIB muse::cloud)
# list(APPEND LINK_LIB muse::languages)
# list(APPEND LINK_LIB muse::multiinstances)

# if (MUSE_MODULE_EXTENSIONS)
# list(APPEND LINK_LIB muse::extensions)
# endif()

# if (MUE_BUILD_IMPORTEXPORT_MODULE)
# set(LINK_LIB ${LINK_LIB}
# iex_musicxml
# iex_bb
# iex_bww
# iex_capella
# iex_guitarpro
# iex_midi
# iex_musedata
# iex_ove
# iex_audioexport
# iex_imagesexport
# iex_mei
# )

# if (MUE_BUILD_VIDEOEXPORT_MODULE)
# list(APPEND LINK_LIB iex_videoexport)
# endif()
# else()
# if (MUE_BUILD_IMAGESEXPORT_MODULE)
# list(APPEND LINK_LIB iex_imagesexport)
# endif()
# endif()

# endif()


# if (MUSE_MODULE_AUTOBOT)
# list(APPEND LINK_LIB muse::autobot)
# endif()

# if (MUSE_MODULE_MUSESAMPLER)
# list(APPEND LINK_LIB muse::musesampler)
# endif()

set (MSCORE_APPEND_SRC)

Expand Down Expand Up @@ -250,16 +250,16 @@ add_executable(${EXECUTABLE_NAME}
${APP_RCC_SOURCES}
${MSCORE_APPEND_SRC}
main.cpp
cmdoptions.h
appfactory.cpp
appfactory.h

internal/commandlineparser.cpp
internal/commandlineparser.h
internal/consoleapp.cpp
internal/consoleapp.h
internal/guiapp.cpp
internal/guiapp.h
# cmdoptions.h
# appfactory.cpp
# appfactory.h

# internal/commandlineparser.cpp
# internal/commandlineparser.h
# internal/consoleapp.cpp
# internal/consoleapp.h
# internal/guiapp.cpp
# internal/guiapp.h

)

Expand Down
Loading

0 comments on commit b141c74

Please sign in to comment.