mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-15 15:11:12 +02:00
Update portmidi to SVN r227.
This commit is contained in:
128
lib-src/portmidi/pm_common/CMakeLists.txt
Normal file
128
lib-src/portmidi/pm_common/CMakeLists.txt
Normal file
@@ -0,0 +1,128 @@
|
||||
# pm_common
|
||||
|
||||
# set the build directory for libportmidi.a to be in portmidi, not in
|
||||
# portmidi/pm_common
|
||||
if(APPLE OR WIN32)
|
||||
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR})
|
||||
# set the build directory for .dylib libraries
|
||||
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR})
|
||||
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR})
|
||||
|
||||
# the first time CMake configures, save off CMake's built-in flags
|
||||
if(NOT DEFAULT_DEBUG_FLAGS)
|
||||
set(DEFAULT_DEBUG_FLAGS ${CMAKE_C_FLAGS_DEBUG} CACHE
|
||||
STRING "CMake's default debug flags" FORCE)
|
||||
set(DEFAULT_RELEASE_FLAGS ${CMAKE_C_FLAGS_RELEASE} CACHE
|
||||
STRING "CMake's default release flags" FORCE)
|
||||
else(NOT DEFAULT_DEBUG_FLAGS)
|
||||
message(STATUS "DEFAULT_DEBUG_FLAGS not nil: " ${DEFAULT_DEBUG_FLAGS})
|
||||
endif(NOT DEFAULT_DEBUG_FLAGS)
|
||||
else(APPLE OR WIN32)
|
||||
set(LINUX_FLAGS "-DPMALSA")
|
||||
endif(APPLE OR WIN32)
|
||||
|
||||
if(APPLE)
|
||||
set(CMAKE_OSX_SYSROOT /Developer/SDKs/MacOSX10.6.sdk CACHE
|
||||
PATH "-isysroot parameter for compiler")
|
||||
set(CMAKE_C_FLAGS "-mmacosx-version-min=10.6" CACHE
|
||||
STRING "needed in conjunction with CMAKE_OSX_SYSROOT" FORCE)
|
||||
endif(APPLE)
|
||||
|
||||
macro(prepend_path RESULT PATH)
|
||||
set(${RESULT})
|
||||
foreach(FILE ${ARGN})
|
||||
list(APPEND ${RESULT} "${PATH}${FILE}")
|
||||
endforeach(FILE)
|
||||
endmacro(prepend_path)
|
||||
|
||||
set(CMAKE_C_FLAGS_DEBUG
|
||||
"${DEFAULT_DEBUG_FLAGS} -DPM_CHECK_ERRORS=1 -DDEBUG ${LINUX_FLAGS}"
|
||||
CACHE STRING "enable extra checks for debugging" FORCE)
|
||||
|
||||
set(CMAKE_C_FLAGS_RELEASE "${DEFAULT_RELEASE_FLAGS} ${LINUX_FLAGS}"
|
||||
CACHE STRING "flags for release version" FORCE)
|
||||
|
||||
# first include the appropriate system-dependent file:
|
||||
if(UNIX)
|
||||
# add the -g switch for Linux and Mac OS X (not used in Win32)
|
||||
set (CMAKE_C_FLAGS_DEBUG "-g ${CMAKE_C_FLAGS_DEBUG}"
|
||||
CACHE STRING "enable extra checks for debugging" FORCE)
|
||||
if(APPLE)
|
||||
set(MACSRC pmmacosxcm pmmac readbinaryplist finddefault)
|
||||
prepend_path(LIBSRC ../pm_mac/ ${MACSRC})
|
||||
list(APPEND LIBSRC ../porttime/ptmacosx_mach)
|
||||
|
||||
include_directories(${CMAKE_OSX_SYSROOT}/Developer/Headers/FlatCarbon)
|
||||
set(FRAMEWORK_PATH ${CMAKE_OSX_SYSROOT}/System/Library/Frameworks)
|
||||
set(COREAUDIO_LIB "${FRAMEWORK_PATH}/CoreAudio.framework")
|
||||
set(COREFOUNDATION_LIB "${FRAMEWORK_PATH}/CoreFoundation.framework")
|
||||
set(COREMIDI_LIB "${FRAMEWORK_PATH}/CoreMIDI.framework")
|
||||
set(CORESERVICES_LIB "${FRAMEWORK_PATH}/CoreServices.framework")
|
||||
set(PM_NEEDED_LIBS ${COREAUDIO_LIB} ${COREFOUNDATION_LIB}
|
||||
${COREMIDI_LIB} ${CORESERVICES_LIB}
|
||||
CACHE INTERNAL "")
|
||||
|
||||
set(JAVAVM_LIB "${FRAMEWORK_PATH}/JavaVM.framework")
|
||||
set(JAVA_INCLUDE_PATHS ${JAVAVM_LIB}/Headers)
|
||||
message(STATUS "SYSROOT: " ${CMAKE_OSX_SYSROOT})
|
||||
else(APPLE)
|
||||
# LINUX settings...
|
||||
include(FindJNI)
|
||||
message(STATUS "JAVA_JVM_LIB_PATH is " ${JAVA_JVM_LIB_PATH})
|
||||
message(STATUS "JAVA_INCLUDE_PATH is " ${JAVA_INCLUDE_PATH})
|
||||
message(STATUS "JAVA_INCLUDE_PATH2 is " ${JAVA_INCLUDE_PATH2})
|
||||
message(STATUS "JAVA_JVM_LIBRARY is " ${JAVA_JVM_LIBRARY})
|
||||
set(JAVA_INCLUDE_PATHS ${JAVA_INCLUDE_PATH} ${JAVA_INCLUDE_PATH2})
|
||||
# libjvm.so is found relative to JAVA_INCLUDE_PATH:
|
||||
set(JAVAVM_LIB ${JAVA_JVM_LIBRARY}/libjvm.so)
|
||||
|
||||
set(LINUXSRC pmlinuxalsa pmlinux finddefault)
|
||||
prepend_path(LIBSRC ../pm_linux/ ${LINUXSRC})
|
||||
list(APPEND LIBSRC ../porttime/ptlinux)
|
||||
|
||||
set(PM_NEEDED_LIBS pthread asound)
|
||||
endif(APPLE)
|
||||
else(UNIX)
|
||||
if(WIN32)
|
||||
# /MDd is multithread debug DLL, /MTd is multithread debug
|
||||
# /MD is multithread DLL, /MT is multithread. Change to static:
|
||||
include(../pm_win/static.cmake)
|
||||
|
||||
include(FindJNI)
|
||||
|
||||
set(JAVA_INCLUDE_PATHS ${JAVA_INCLUDE_PATH} ${JAVA_INCLUDE_PATH2})
|
||||
# message(STATUS "JAVA_INCLUDE_PATHS: " ${JAVA_INCLUDE_PATHS})
|
||||
|
||||
set(WINSRC pmwin pmwinmm)
|
||||
prepend_path(LIBSRC ../pm_win/ ${WINSRC})
|
||||
list(APPEND LIBSRC ../porttime/ptwinmm)
|
||||
set(PM_NEEDED_LIBS winmm.lib)
|
||||
endif(WIN32)
|
||||
endif(UNIX)
|
||||
set(JNI_EXTRA_LIBS ${PM_NEEDED_LIBS} ${JAVA_JVM_LIBRARY})
|
||||
|
||||
# this completes the list of library sources by adding shared code
|
||||
list(APPEND LIBSRC pmutil portmidi)
|
||||
|
||||
# now add the shared files to make the complete list of library sources
|
||||
add_library(portmidi-static ${LIBSRC})
|
||||
set_target_properties(portmidi-static PROPERTIES OUTPUT_NAME "portmidi_s")
|
||||
target_link_libraries(portmidi-static ${PM_NEEDED_LIBS})
|
||||
|
||||
# define the jni library
|
||||
include_directories(${JAVA_INCLUDE_PATHS})
|
||||
|
||||
set(JNISRC ${LIBSRC} ../pm_java/pmjni/pmjni.c)
|
||||
add_library(pmjni SHARED ${JNISRC})
|
||||
target_link_libraries(pmjni ${JNI_EXTRA_LIBS})
|
||||
set_target_properties(pmjni PROPERTIES EXECUTABLE_EXTENSION "jnilib")
|
||||
|
||||
# install the libraries (Linux and Mac OS X command line)
|
||||
if(UNIX)
|
||||
INSTALL(TARGETS portmidi-static pmjni
|
||||
LIBRARY DESTINATION /usr/local/lib
|
||||
ARCHIVE DESTINATION /usr/local/lib)
|
||||
# .h files installed by pm_dylib/CMakeLists.txt, so don't need them here
|
||||
# INSTALL(FILES portmidi.h ../porttime/porttime.h
|
||||
# DESTINATION /usr/local/include)
|
||||
endif(UNIX)
|
Reference in New Issue
Block a user