2016-01-21 13:56:41 -08:00
|
|
|
set(CMAKE_BUILD_TYPE Debug CACHE STRING "")
|
2016-01-06 14:40:53 -08:00
|
|
|
project(realm-object-store)
|
|
|
|
|
2016-01-06 17:23:11 -08:00
|
|
|
cmake_minimum_required(VERSION 3.2.0)
|
2016-01-06 14:40:53 -08:00
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMake")
|
|
|
|
|
|
|
|
include(CompilerFlags)
|
|
|
|
|
|
|
|
include(RealmCore)
|
2016-02-23 14:53:03 -08:00
|
|
|
download_realm_core(0.96.2)
|
2016-01-06 14:40:53 -08:00
|
|
|
|
2016-01-06 15:52:12 -08:00
|
|
|
include_directories(${REALM_CORE_INCLUDE_DIR} src external/pegtl)
|
2016-01-06 14:40:53 -08:00
|
|
|
|
2016-01-06 15:52:12 -08:00
|
|
|
add_subdirectory(src)
|
|
|
|
add_subdirectory(tests)
|