You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.2 KiB
29 lines
1.2 KiB
cmake_minimum_required(VERSION 3.4)
|
|
enable_language(C)
|
|
|
|
set(CMAKE_CONFIGURATION_TYPES "Debug" CACHE INTERNAL "Supported configuration types")
|
|
set(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}) # get rid of ${EFFECTIVE_PLATFORM_NAME}
|
|
|
|
add_library(Framework ${FRAMEWORK_TYPE}
|
|
foo.c
|
|
foo.h
|
|
res.txt
|
|
flatresource.txt
|
|
deepresource.txt
|
|
some.txt)
|
|
if("${CMAKE_FRAMEWORK}" STREQUAL "")
|
|
set_target_properties(Framework PROPERTIES
|
|
FRAMEWORK TRUE)
|
|
endif()
|
|
set_target_properties(Framework PROPERTIES
|
|
PUBLIC_HEADER foo.h
|
|
RESOURCE "res.txt")
|
|
set_source_files_properties(flatresource.txt PROPERTIES MACOSX_PACKAGE_LOCATION Resources)
|
|
set_source_files_properties(deepresource.txt PROPERTIES MACOSX_PACKAGE_LOCATION Resources/deep)
|
|
set_source_files_properties(some.txt PROPERTIES MACOSX_PACKAGE_LOCATION somedir)
|
|
|
|
add_custom_command(TARGET Framework POST_BUILD
|
|
COMMAND /usr/bin/file $<TARGET_FILE:Framework>)
|
|
|
|
file(GENERATE OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/FrameworkName.cmake CONTENT "set(framework-dir \"$<TARGET_BUNDLE_DIR:Framework>\")\n")
|