Compare commits

..

No commits in common. "7439747876e5d26d0c09b5a80deb1403f8811b58" and "d7b765fba5bb683eddeb54576d4800df64731fb9" have entirely different histories.

3 changed files with 8 additions and 9 deletions

View File

@ -1,5 +1,4 @@
cmake_minimum_required(VERSION 3.8)
cmake_policy(SET CMP0068 NEW)
project(GermanAirlinesVA_GAConnector)
@ -7,7 +6,6 @@ set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)
set(CMAKE_BUILD_WITH_INSTALL_NAME_DIR TRUE)
set(PLUGIN_NAME GAConnector)
option(DEBUG "Debug symbols" OFF)

View File

@ -57,6 +57,7 @@ if(APPLE)
message("Building for MacOSX Universal into ${PROJECT_BINARY_DIR}/${PLUGIN_NAME}/${BIT}")
set_target_properties(germanairlinesva_xplugin PROPERTIES
NO_SONAME 1
LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/Plugin/${PLUGIN_NAME}
OUTPUT_NAME mac
)