mirror of
https://github.com/status-im/realm-js.git
synced 2025-02-04 10:43:29 +00:00
49 lines
1.2 KiB
CMake
49 lines
1.2 KiB
CMake
set(SOURCES
|
|
index_set.cpp
|
|
list.cpp
|
|
object_schema.cpp
|
|
object_store.cpp
|
|
results.cpp
|
|
schema.cpp
|
|
shared_realm.cpp
|
|
impl/async_query.cpp
|
|
impl/realm_coordinator.cpp
|
|
impl/transact_log_handler.cpp
|
|
parser/parser.cpp
|
|
parser/query_builder.cpp)
|
|
|
|
set(HEADERS
|
|
index_set.hpp
|
|
list.hpp
|
|
object_schema.hpp
|
|
object_store.hpp
|
|
results.hpp
|
|
schema.hpp
|
|
shared_realm.hpp
|
|
impl/weak_realm_notifier.hpp
|
|
impl/weak_realm_notifier_base.hpp
|
|
impl/external_commit_helper.hpp
|
|
impl/transact_log_handler.hpp
|
|
parser/parser.hpp
|
|
parser/query_builder.hpp
|
|
util/atomic_shared_ptr.hpp)
|
|
|
|
if(APPLE)
|
|
list(APPEND SOURCES
|
|
impl/apple/weak_realm_notifier.cpp
|
|
impl/apple/external_commit_helper.cpp)
|
|
list(APPEND HEADERS
|
|
impl/apple/weak_realm_notifier.hpp
|
|
impl/apple/external_commit_helper.hpp)
|
|
find_library(CF_LIBRARY CoreFoundation)
|
|
else()
|
|
list(APPEND SOURCES
|
|
impl/generic/external_commit_helper.cpp)
|
|
list(APPEND HEADERS
|
|
impl/generic/weak_realm_notifier.hpp
|
|
impl/generic/external_commit_helper.hpp)
|
|
endif()
|
|
|
|
add_library(realm-object-store SHARED ${SOURCES} ${HEADERS})
|
|
target_link_libraries(realm-object-store realm ${CF_LIBRARY})
|