mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 18:25:52 +02:00
add back the lost QXMPP_STATIC definition
This commit is contained in:
parent
6fdd64c9fc
commit
5bc42b9d1c
1 changed files with 7 additions and 2 deletions
|
@ -172,11 +172,16 @@ if (VISAGE_FOUND AND NOT DISABLE_VISAGE AND APPLE)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
# special OS X modifications for RtMidi library
|
# special OS X modifications for RtMidi library
|
||||||
if (RTMIDI_FOUND AND NOT DISABLE_RTMIDI AND APPLY)
|
if (RTMIDI_FOUND AND NOT DISABLE_RTMIDI AND APPLE)
|
||||||
find_library(CoreMIDI CoreMIDI)
|
find_library(CoreMIDI CoreMIDI)
|
||||||
add_definitions(-D__MACOSX_CORE__)
|
add_definitions(-D__MACOSX_CORE__)
|
||||||
target_link_libraries(${TARGET_NAME} ${CoreMIDI})
|
target_link_libraries(${TARGET_NAME} ${CoreMIDI})
|
||||||
endif()
|
endif ()
|
||||||
|
|
||||||
|
if (QXMPP_FOUND AND NOT DISABLE_QXMPP AND WIN32)
|
||||||
|
# assume we're linking a static Qt on windows
|
||||||
|
add_definitions(-DQXMPP_STATIC)
|
||||||
|
endif ()
|
||||||
|
|
||||||
# include headers for interface and InterfaceConfig.
|
# include headers for interface and InterfaceConfig.
|
||||||
include_directories("${PROJECT_SOURCE_DIR}/src" "${PROJECT_BINARY_DIR}/includes")
|
include_directories("${PROJECT_SOURCE_DIR}/src" "${PROJECT_BINARY_DIR}/includes")
|
||||||
|
|
Loading…
Reference in a new issue