summaryrefslogtreecommitdiff
path: root/cmake/filesource.cmake
blob: ff9fa360f6d29b098e1c92c2d2329586b85d577a (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 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)