mirror of
https://github.com/strawberrymusicplayer/strawberry
synced 2025-01-24 14:40:54 +01:00
19 lines
656 B
CMake
19 lines
656 B
CMake
cmake_minimum_required(VERSION 3.13)
|
|
|
|
qt_wrap_cpp(MACDEPLOYCHECK_MOC ${CMAKE_SOURCE_DIR}/ext/libstrawberry-common/core/logging.h)
|
|
|
|
add_executable(macdeploycheck macdeploycheck.cpp ${CMAKE_SOURCE_DIR}/ext/libstrawberry-common/core/logging.cpp ${MACDEPLOYCHECK_MOC})
|
|
target_include_directories(macdeploycheck PUBLIC SYSTEM
|
|
${GLIB_INCLUDE_DIRS}
|
|
)
|
|
target_include_directories(macdeploycheck PUBLIC
|
|
${CMAKE_SOURCE_DIR}/ext/libstrawberry-common
|
|
${CMAKE_BINARY_DIR}/src
|
|
)
|
|
target_link_directories(macdeploycheck PUBLIC ${GLIB_LIBRARY_DIRS})
|
|
target_link_libraries(macdeploycheck PUBLIC
|
|
"-framework AppKit"
|
|
${GLIB_LIBRARIES}
|
|
Qt${QT_VERSION_MAJOR}::Core
|
|
)
|