2020-03-26 16:24:37 +01:00
|
|
|
###############################
|
|
|
|
|
# Developer tools
|
|
|
|
|
|
2020-12-14 14:11:57 +01:00
|
|
|
if(TARGET sfizz::jack AND TARGET Qt5::Widgets)
|
2020-07-05 16:42:06 +02:00
|
|
|
add_executable(sfizz_capture_eg CaptureEG.h CaptureEG.cpp)
|
2020-12-14 14:11:57 +01:00
|
|
|
target_include_directories(sfizz_capture_eg PRIVATE .)
|
|
|
|
|
target_link_libraries(sfizz_capture_eg PRIVATE sfizz::sndfile Qt5::Widgets sfizz::jack)
|
2020-03-26 16:24:37 +01:00
|
|
|
set_target_properties(sfizz_capture_eg PROPERTIES AUTOUIC ON)
|
|
|
|
|
endif()
|
2020-05-15 17:10:07 +02:00
|
|
|
|
|
|
|
|
add_executable(sfizz_preprocessor Preprocessor.cpp)
|
2020-12-18 21:23:24 +01:00
|
|
|
target_link_libraries(sfizz_preprocessor PRIVATE sfizz::parser sfizz::pugixml sfizz::cxxopts)
|
2021-02-15 06:39:35 +01:00
|
|
|
|
2021-03-18 16:50:23 +01:00
|
|
|
add_executable(sfizz_importer Importer.cpp)
|
|
|
|
|
target_link_libraries(sfizz_importer PRIVATE sfizz::import)
|
|
|
|
|
|
2021-02-15 06:39:35 +01:00
|
|
|
add_executable(sfizz_hiir_designer HIIRDesigner.cpp)
|
|
|
|
|
target_link_libraries(sfizz_hiir_designer PRIVATE sfizz::hiir_polyphase_iir2designer)
|