forked from LMMS/lmms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Flag appropriate include directories as SYSTEM
- Loading branch information
Showing
14 changed files
with
45 additions
and
35 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
INCLUDE(BuildPlugin) | ||
INCLUDE_DIRECTORIES(${FFTW3F_INCLUDE_DIRS}) | ||
include_directories(SYSTEM ${FFTW3F_INCLUDE_DIRS}) | ||
LINK_LIBRARIES(${FFTW3F_LIBRARIES}) | ||
BUILD_PLUGIN(eq EqEffect.cpp EqCurve.cpp EqCurve.h EqControls.cpp EqControlsDialog.cpp EqFilter.h EqParameterWidget.cpp EqFader.h EqSpectrumView.h EqSpectrumView.cpp | ||
MOCFILES EqControls.h EqControlsDialog.h EqCurve.h EqParameterWidget.h EqFader.h EqSpectrumView.h EMBEDDED_RESOURCES *.png) |
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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
IF(LMMS_HAVE_LV2) | ||
INCLUDE_DIRECTORIES(${LV2_INCLUDE_DIRS}) | ||
INCLUDE_DIRECTORIES(${LILV_INCLUDE_DIRS}) | ||
INCLUDE_DIRECTORIES(${SUIL_INCLUDE_DIRS}) | ||
include_directories(SYSTEM ${LV2_INCLUDE_DIRS}) | ||
include_directories(SYSTEM ${LILV_INCLUDE_DIRS}) | ||
include_directories(SYSTEM ${SUIL_INCLUDE_DIRS}) | ||
INCLUDE(BuildPlugin) | ||
BUILD_PLUGIN(lv2instrument Lv2Instrument.cpp Lv2Instrument.h MOCFILES Lv2Instrument.h EMBEDDED_RESOURCES logo.png) | ||
ENDIF(LMMS_HAVE_LV2) |
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 |
---|---|---|
@@ -1,10 +1,16 @@ | ||
INCLUDE(BuildPlugin) | ||
include(BuildPlugin) | ||
|
||
INCLUDE_DIRECTORIES(${FFTW3F_INCLUDE_DIRS}) | ||
LINK_LIBRARIES(${FFTW3F_LIBRARIES}) | ||
include_directories(SYSTEM ${FFTW3F_INCLUDE_DIRS}) | ||
link_libraries(${FFTW3F_LIBRARIES}) | ||
|
||
INCLUDE_DIRECTORIES(${SAMPLERATE_INCLUDE_DIRS}) | ||
LINK_DIRECTORIES(${SAMPLERATE_LIBRARY_DIRS}) | ||
LINK_LIBRARIES(${SAMPLERATE_LIBRARIES}) | ||
|
||
BUILD_PLUGIN(slicert SlicerT.cpp SlicerT.h SlicerTView.cpp SlicerTView.h SlicerTWaveform.cpp SlicerTWaveform.h MOCFILES SlicerT.h SlicerTView.h SlicerTWaveform.h EMBEDDED_RESOURCES "${CMAKE_CURRENT_SOURCE_DIR}/*.png") | ||
build_plugin(slicert | ||
SlicerT.cpp | ||
SlicerT.h | ||
SlicerTView.cpp | ||
SlicerTView.h | ||
SlicerTWaveform.cpp | ||
SlicerTWaveform.h | ||
MOCFILES SlicerT.h SlicerTView.h SlicerTWaveform.h | ||
EMBEDDED_RESOURCES "${CMAKE_CURRENT_SOURCE_DIR}/*.png" | ||
) | ||
target_link_libraries(slicert SampleRate::samplerate) |
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
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