1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
#[===========================================================================[
MIDI C++ Library
Copyright (C) 2005-2025 Pedro Lopez-Cabanillas <plcl@users.sourceforge.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
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, see <http://www.gnu.org/licenses/>.
#]===========================================================================]
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(drumstick-rt_QOBJ_SRCS
../include/drumstick/rtmidiinput.h
../include/drumstick/rtmidioutput.h
)
set(drumstick-rt_HEADERS
../include/drumstick/macros.h
../include/drumstick/rtmidiinput.h
../include/drumstick/rtmidioutput.h
../include/drumstick/backendmanager.h
)
if(BUILD_FRAMEWORKS)
set_source_files_properties(${drumstick-rt_HEADERS}
PROPERTIES MACOSX_PACKAGE_LOCATION Headers/drumstick
)
endif()
set(drumstick-rt_SRCS
backendmanager.cpp
)
if (WIN32)
set(TARGET_DESCRIPTION ${Drumstick_DESCRIPTION})
set(TARGET_NAME drumstick-rt)
set(TARGET_ORIGINAL_FILENAME libdrumstick-rt.dll)
configure_file(${Drumstick_SOURCE_DIR}/versioninfo.rc.in versioninfo.rc @ONLY)
list(APPEND drumstick-rt_SRCS versioninfo.rc)
endif()
if (QT_VERSION VERSION_LESS 5.15.0)
qt5_wrap_cpp(drumstick-rt_MOC_SRCS ${drumstick-rt_QOBJ_SRCS})
else()
qt_wrap_cpp(drumstick-rt_MOC_SRCS ${drumstick-rt_QOBJ_SRCS})
endif()
add_library(drumstick-rt
${drumstick-rt_MOC_SRCS}
${drumstick-rt_SRCS}
${drumstick-rt_HEADERS}
)
add_library(Drumstick::RT ALIAS drumstick-rt)
target_include_directories(drumstick-rt PUBLIC
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/library/include>
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
)
target_compile_definitions(drumstick-rt
PRIVATE LIBSUFFIX=${CMAKE_INSTALL_LIBDIR}
QT_NO_SIGNALS_SLOTS_KEYWORDS
)
target_link_libraries(drumstick-rt PRIVATE
Qt${QT_VERSION_MAJOR}::Core
)
if(STATIC_DRUMSTICK)
set_target_properties(drumstick-rt PROPERTIES
STATIC_LIB "libdrumstick-rt"
EXPORT_NAME RT
)
else() # STATIC_DRUMSTICK
set_target_properties(drumstick-rt PROPERTIES
VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}
SOVERSION ${PROJECT_VERSION_MAJOR}
EXPORT_NAME RT
# macOS:
MACOSX_RPATH TRUE
)
if (BUILD_FRAMEWORKS)
set_target_properties(drumstick-rt PROPERTIES
FRAMEWORK ${BUILD_FRAMEWORKS}
FRAMEWORK_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}
MACOSX_FRAMEWORK_IDENTIFIER "net.sourceforge.drumstick-rt"
MACOSX_FRAMEWORK_INFO_PLIST "${CMAKE_SOURCE_DIR}/cmake_admin/CustomFrameworkInfo.plist.in"
)
endif()
endif() # STATIC_DRUMSTICK
install(TARGETS drumstick-rt
EXPORT drumstick-rt-targets
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
FRAMEWORK DESTINATION ${CMAKE_INSTALL_LIBDIR}
)
install(FILES ${drumstick-rt_HEADERS}
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/drumstick)
install(EXPORT drumstick-rt-targets
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/drumstick
NAMESPACE Drumstick::
)
export(EXPORT drumstick-rt-targets
NAMESPACE Drumstick::
FILE ${CMAKE_BINARY_DIR}/drumstick-rt-targets.cmake
)
include(CMakePackageConfigHelpers)
write_basic_package_version_file(${CMAKE_BINARY_DIR}/drumstick-rt-config-version.cmake
VERSION ${PROJECT_VERSION}
COMPATIBILITY AnyNewerVersion
)
configure_file( drumstick-rt-config.cmake
${CMAKE_BINARY_DIR}/drumstick-rt-config.cmake
@ONLY
)
install(FILES
${CMAKE_BINARY_DIR}/drumstick-rt-config-version.cmake
${CMAKE_BINARY_DIR}/drumstick-rt-config.cmake
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/drumstick
)
|