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.
13 lines
372 B
13 lines
372 B
enable_language(C)
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "iOS")
|
|
set(CMAKE_XCODE_ATTRIBUTE_ENABLE_BITCODE "NO")
|
|
endif()
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "tvOS" OR CMAKE_SYSTEM_NAME STREQUAL "watchOS" OR CMAKE_SYSTEM_NAME STREQUAL "visionOS")
|
|
set(CMAKE_XCODE_ATTRIBUTE_ENABLE_BITCODE "YES")
|
|
endif()
|
|
|
|
add_library(mylib STATIC mylib/mylib.c)
|
|
install(TARGETS mylib DESTINATION lib)
|