-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
39 changed files
with
13,716 additions
and
191 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,15 @@ | ||
pkg_check_modules(DRUMSTICK REQUIRED drumstick-alsa) | ||
|
||
link_directories( | ||
${DRUMSTICK_LIBRARY_DIRS} | ||
) | ||
|
||
include_directories( | ||
${DRUMSTICK_INCLUDE_DIRS} | ||
) | ||
|
||
add_executable( cmdlnsynth main.cpp ) | ||
|
||
target_link_libraries( cmdlnsynth | ||
Qt5::Core | ||
svoxeas | ||
${DRUMSTICK_LIBRARIES} | ||
Qt5::Core | ||
Drumstick::ALSA | ||
svoxeas | ||
) | ||
|
||
target_compile_definitions( cmdlnsynth PRIVATE | ||
VERSION=${PROJECT_VERSION} | ||
$<$<CONFIG:RELEASE>:QT_NO_DEBUG_OUTPUT> | ||
) | ||
|
||
install( TARGETS cmdlnsynth | ||
DESTINATION bin ) | ||
DESTINATION ${CMAKE_INSTALL_BINDIR} ) |
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,6 +1,6 @@ | ||
/* | ||
Sonivox EAS Synthesizer for Qt applications | ||
Copyright (C) 2016-2018, Pedro Lopez-Cabanillas <[email protected]> | ||
Copyright (C) 2016-2020, Pedro Lopez-Cabanillas <[email protected]> | ||
This library is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
|
@@ -12,9 +12,8 @@ | |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License along | ||
with this program; if not, write to the Free Software Foundation, Inc., | ||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <signal.h> | ||
|
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,2 +1,2 @@ | ||
VERSION = 1.2.0 | ||
VERSION = 1.3.0 | ||
DEFINES += VERSION=$$VERSION |
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,40 +1,30 @@ | ||
set(CMAKE_INCLUDE_CURRENT_DIR ON) | ||
find_package(Qt5Widgets REQUIRED) | ||
pkg_check_modules(DRUMSTICK REQUIRED drumstick-alsa) | ||
|
||
link_directories( | ||
${DRUMSTICK_LIBRARY_DIRS} | ||
) | ||
|
||
include_directories( | ||
${DRUMSTICK_INCLUDE_DIRS} | ||
) | ||
|
||
set( SOURCES | ||
main.cpp | ||
mainwindow.cpp | ||
) | ||
set(CMAKE_AUTOUIC ON) | ||
set(CMAKE_AUTOMOC ON) | ||
set(CMAKE_AUTORCC ON) | ||
|
||
set( SOURCES main.cpp mainwindow.cpp ) | ||
set( HEADERS mainwindow.h ) | ||
set( FORMS mainwindow.ui ) | ||
set( RESOURCES guisynth.qrc ) | ||
|
||
qt5_wrap_cpp ( MOC_SRCS ${HEADERS} ) | ||
qt5_wrap_ui ( UI_SRCS ${FORMS} ) | ||
qt5_add_resources ( RES_SRCS ${RESOURCES} ) | ||
|
||
add_executable( guisynth | ||
${SOURCES} | ||
${MOC_SRCS} | ||
${UI_SRCS} | ||
${RES_SRCS} | ||
${HEADERS} | ||
${FORMS} | ||
${RESOURCES} | ||
) | ||
|
||
target_link_libraries( guisynth | ||
Qt5::Widgets | ||
Drumstick::ALSA | ||
svoxeas | ||
${DRUMSTICK_LIBRARIES} | ||
) | ||
|
||
target_compile_definitions( guisynth PRIVATE | ||
VERSION=${PROJECT_VERSION} | ||
$<$<CONFIG:RELEASE>:QT_NO_DEBUG_OUTPUT> | ||
) | ||
|
||
install( TARGETS guisynth | ||
DESTINATION bin ) | ||
DESTINATION ${CMAKE_INSTALL_BINDIR} ) |
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,6 +1,6 @@ | ||
/* | ||
Sonivox EAS Synthesizer for Qt applications | ||
Copyright (C) 2016-2018, Pedro Lopez-Cabanillas <[email protected]> | ||
Copyright (C) 2016-2020, Pedro Lopez-Cabanillas <[email protected]> | ||
This library is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
|
@@ -12,9 +12,8 @@ | |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License along | ||
with this program; if not, write to the Free Software Foundation, Inc., | ||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include "programsettings.h" | ||
|
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,6 +1,6 @@ | ||
/* | ||
Sonivox EAS Synthesizer for Qt applications | ||
Copyright (C) 2016-2018, Pedro Lopez-Cabanillas <[email protected]> | ||
Copyright (C) 2016-2020, Pedro Lopez-Cabanillas <[email protected]> | ||
This library is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
|
@@ -12,9 +12,8 @@ | |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License along | ||
with this program; if not, write to the Free Software Foundation, Inc., | ||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <QCloseEvent> | ||
|
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,6 +1,6 @@ | ||
/* | ||
Sonivox EAS Synthesizer for Qt applications | ||
Copyright (C) 2016-2018, Pedro Lopez-Cabanillas <[email protected]> | ||
Copyright (C) 2016-2020, Pedro Lopez-Cabanillas <[email protected]> | ||
This library is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
|
@@ -12,9 +12,8 @@ | |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License along | ||
with this program; if not, write to the Free Software Foundation, Inc., | ||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#ifndef MAINWINDOW_H | ||
|
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,6 +1,6 @@ | ||
/* | ||
Sonivox EAS Synthesizer for Qt applications | ||
Copyright (C) 2016-2018, Pedro Lopez-Cabanillas <[email protected]> | ||
Copyright (C) 2016-2020, Pedro Lopez-Cabanillas <[email protected]> | ||
This library is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
|
@@ -12,9 +12,8 @@ | |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License along | ||
with this program; if not, write to the Free Software Foundation, Inc., | ||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <QDebug> | ||
|
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,6 +1,6 @@ | ||
/* | ||
Sonivox EAS Synthesizer for Qt applications | ||
Copyright (C) 2016-2018, Pedro Lopez-Cabanillas <[email protected]> | ||
Copyright (C) 2016-2020, Pedro Lopez-Cabanillas <[email protected]> | ||
This library is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
|
@@ -12,9 +12,8 @@ | |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License along | ||
with this program; if not, write to the Free Software Foundation, Inc., | ||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#ifndef MIDIIOWRAPPER_H | ||
|
Oops, something went wrong.