-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a common build include file to align versions of the host
- Loading branch information
1 parent
5e1adbb
commit 672aad9
Showing
3 changed files
with
36 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
sources/sub-projects/ayfstarter/sources/Applications/common/local_config.cmake
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
set(LOCAL_SOURCES ${LOCAL_SOURCES} | ||
${CMAKE_CURRENT_SOURCE_DIR}/../common/ayfstarter-components.cpp | ||
${CMAKE_CURRENT_SOURCE_DIR}/../common/ayfstarter-connectionrules.cpp | ||
${CMAKE_CURRENT_SOURCE_DIR}/../common/ayfstarter-hostconfig.cpp | ||
${CMAKE_CURRENT_SOURCE_DIR}/../common/ayfstarter-sequencer.cpp | ||
../common/local_config.cmake | ||
) | ||
|
||
include_directories( | ||
|
||
${SUBPRODUCT_AYFSTARTER_LIBS_BINARY_DIR}/sources/Components/AudioNodes/ayfAuNStarter/ | ||
|
||
${JVX_SUBPRODUCT_ROOT}/sources/jvxLibraries/jvx-component-templates-product/include | ||
${JVX_SUBPRODUCT_BINARY_DIR}/sources/jvxLibraries/jvx-component-templates-product/generated | ||
) | ||
|
||
set(LOCAL_LIBS ${LOCAL_LIBS} | ||
ayfAuNStarter_static ) | ||
|
||
# Link against either audio host lib or develop host lib | ||
include(${JVX_SUBPRODUCT_ROOT}/cmake/hostlink.audio.cmake) | ||
|
||
## ====================================================================== | ||
## The audio libs | ||
# Pull in all audio components | ||
include(${JVX_CMAKE_DIR}/packages/cmake-audio-components.cmake) | ||
|
||
# Macos x specific configurations | ||
#if(JVX_OS MATCHES "macosx") | ||
# set(JVX_MAC_OS_CREATE_BUNDLE TRUE) | ||
#else(JVX_OS MATCHES "macosx") | ||
# set(CONFIGURE_LOCAL_START_SCRIPT TRUE) | ||
#endif(JVX_OS MATCHES "macosx") |