2016-03-28 14:02:17 -07:00
|
|
|
cmake_minimum_required(VERSION 3.2.0)
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMake")
|
|
|
|
|
2016-02-18 17:21:08 -08:00
|
|
|
include(CodeCoverage)
|
2016-01-06 14:40:53 -08:00
|
|
|
include(CompilerFlags)
|
2016-03-10 06:45:19 -08:00
|
|
|
include(Sanitizers)
|
2016-01-06 14:40:53 -08:00
|
|
|
|
|
|
|
include(RealmCore)
|
2016-04-27 16:28:59 -07:00
|
|
|
set(REALM_CORE_VERSION "0.100.1" CACHE STRING "")
|
2016-03-02 00:21:43 -08:00
|
|
|
use_realm_core(${REALM_CORE_VERSION})
|
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)
|
2016-02-02 15:12:36 -08:00
|
|
|
add_subdirectory(fuzzer)
|
2016-01-06 15:52:12 -08:00
|
|
|
add_subdirectory(tests)
|