Compare commits
No commits in common. "8449f710fb5fce6812843224c263a925b6f2beb0" and "69dc3721be4831b0efe3344951a719e43243ce24" have entirely different histories.
8449f710fb
...
69dc3721be
|
|
@ -1,7 +1 @@
|
|||
*.rej
|
||||
*.orig
|
||||
.DS_Store
|
||||
*.ini
|
||||
build
|
||||
*.*~
|
||||
*.o
|
||||
|
|
|
|||
|
|
@ -11,7 +11,6 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|||
set(CMAKE_AUTOMOC ON)
|
||||
include(GNUInstallDirs)
|
||||
set(CMAKE_AUTOUIC ON)
|
||||
set(CMAKE_AUTORCC ON)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 11)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
|
@ -27,7 +26,6 @@ add_executable(samplebrain WIN32 MACOSX_BUNDLE
|
|||
app/feedback.cpp
|
||||
app/process_thread.cpp
|
||||
app/qtmain.cpp
|
||||
app/samplebrain.qrc
|
||||
app/sound_items.cpp
|
||||
brain/src/aquila/filter/MelFilter.cpp
|
||||
brain/src/aquila/filter/MelFilterBank.cpp
|
||||
|
|
@ -71,6 +69,26 @@ if(OpenMP_CXX_FOUND)
|
|||
target_link_libraries(samplebrain PUBLIC OpenMP::OpenMP_CXX)
|
||||
endif()
|
||||
|
||||
|
||||
# Resources:
|
||||
set(samplebrain_resource_files
|
||||
"app/images/at.png"
|
||||
"app/images/pause.png"
|
||||
"app/images/play.png"
|
||||
"app/images/record.png"
|
||||
"app/images/settings.png"
|
||||
"app/images/stop.png"
|
||||
)
|
||||
|
||||
qt5_add_resources(samplebrain "samplebrain"
|
||||
PREFIX
|
||||
"/images"
|
||||
#BASE
|
||||
# "app"
|
||||
FILES
|
||||
${samplebrain_resource_files}
|
||||
)
|
||||
|
||||
install(TARGETS samplebrain
|
||||
BUNDLE DESTINATION .
|
||||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
||||
|
|
|
|||
Loading…
Reference in New Issue