blob: 4d7febdd778ecdd798c1ec070e8f758100203ef7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Modify platform/default/filesource-files.json to change the source files for this target.
load_sources_list(MBGL_FILESOURCE_FILES platform/default/filesource-files.json)
add_library(mbgl-filesource STATIC ${MBGL_FILESOURCE_FILES})
target_include_directories(mbgl-filesource
PRIVATE include
PRIVATE src
PRIVATE platform/default/include
)
target_link_libraries(mbgl-filesource
PUBLIC mbgl-core
PUBLIC mbgl-vendor-expected
)
mbgl_filesource()
create_source_groups(mbgl-filesource)
set_target_properties(mbgl-filesource PROPERTIES FOLDER "Core")
xcode_create_scheme(TARGET mbgl-filesource)
initialize_xcode_cxx_build_settings(mbgl-filesource)
|