Merge pull request #50 from realm/mar/cmake-linux-and-local-core

Support building on Linux and with local builds of core
This commit is contained in:
Mark Rowe 2016-03-02 16:39:07 -08:00
commit c7f4133414
4 changed files with 88 additions and 3 deletions

2
.gitignore vendored
View File

@ -9,5 +9,5 @@ cmake_install.cmake
rules.ninja
# Build products
librealm-object-store.dylib
src/librealm-object-store.*
tests/tests

View File

@ -1,5 +1,26 @@
include(ExternalProject)
if(${CMAKE_GENERATOR} STREQUAL "Unix Makefiles")
set(MAKE_EQUAL_MAKE "MAKE=$(MAKE)")
endif()
if (${CMAKE_VERSION} VERSION_GREATER "3.4.0")
set(USES_TERMINAL_BUILD USES_TERMINAL_BUILD 1)
endif()
function(use_realm_core version_or_path_to_source)
if("${version_or_path_to_source}" MATCHES "^[0-9]+(\\.[0-9])+")
if(APPLE)
download_realm_core(${version_or_path_to_source})
else()
clone_and_build_realm_core("v${version_or_path_to_source}")
endif()
else()
build_existing_realm_core(${version_or_path_to_source})
endif()
set(REALM_CORE_INCLUDE_DIR ${REALM_CORE_INCLUDE_DIR} PARENT_SCOPE)
endfunction()
function(download_realm_core core_version)
set(core_url "https://static.realm.io/downloads/core/realm-core-${core_version}.tar.bz2")
set(core_tarball_name "realm-core-${core_version}.tar.bz2")
@ -10,7 +31,7 @@ function(download_realm_core core_version)
if (NOT EXISTS ${core_tarball})
if (NOT EXISTS ${core_temp_tarball})
message("Downloading core ${core_version} from ${core_url}.")
message("Downloading core ${core_version} from ${core_url}.")
file(DOWNLOAD ${core_url} ${core_temp_tarball}.tmp SHOW_PROGRESS)
file(RENAME ${core_temp_tarball}.tmp ${core_temp_tarball})
endif()
@ -40,3 +61,58 @@ function(download_realm_core core_version)
set(REALM_CORE_INCLUDE_DIR ${core_directory}/include PARENT_SCOPE)
endfunction()
macro(define_built_realm_core_target core_directory)
set(core_library_debug ${core_directory}/src/realm/librealm-dbg${CMAKE_SHARED_LIBRARY_SUFFIX})
set(core_library_release ${core_directory}/src/realm/librealm${CMAKE_SHARED_LIBRARY_SUFFIX})
set(core_libraries ${core_library_debug} ${core_library_release})
ExternalProject_Add_Step(realm-core ensure-libraries
COMMAND ${CMAKE_COMMAND} -E touch_nocreate ${core_libraries}
OUTPUT ${core_libraries}
DEPENDEES build
)
add_library(realm SHARED IMPORTED)
add_dependencies(realm realm-core)
set_property(TARGET realm PROPERTY IMPORTED_LOCATION_DEBUG ${core_library_debug})
set_property(TARGET realm PROPERTY IMPORTED_LOCATION_RELEASE ${core_library_release})
set_property(TARGET realm PROPERTY IMPORTED_LOCATION ${core_library_release})
set(REALM_CORE_INCLUDE_DIR ${core_directory}/src PARENT_SCOPE)
endmacro()
function(clone_and_build_realm_core branch)
set(core_prefix_directory "${CMAKE_CURRENT_SOURCE_DIR}${CMAKE_FILES_DIRECTORY}/realm-core")
ExternalProject_Add(realm-core
GIT_REPOSITORY "git@github.com:realm/realm-core.git"
GIT_TAG ${branch}
PREFIX ${core_prefix_directory}
BUILD_IN_SOURCE 1
CONFIGURE_COMMAND ""
BUILD_COMMAND ${MAKE_EQUAL_MAKE} sh build.sh build
INSTALL_COMMAND ""
${USES_TERMINAL_BUILD}
)
ExternalProject_Get_Property(realm-core SOURCE_DIR)
define_built_realm_core_target(${SOURCE_DIR})
endfunction()
function(build_existing_realm_core core_directory)
get_filename_component(core_directory ${core_directory} ABSOLUTE)
ExternalProject_Add(realm-core
URL ""
PREFIX ${CMAKE_CURRENT_SOURCE_DIR}${CMAKE_FILES_DIRECTORY}/realm-core
SOURCE_DIR ${core_directory}
BUILD_IN_SOURCE 1
BUILD_ALWAYS 1
CONFIGURE_COMMAND ""
BUILD_COMMAND ${MAKE_EQUAL_MAKE} sh build.sh build
INSTALL_COMMAND ""
${USES_TERMINAL_BUILD}
)
define_built_realm_core_target(${core_directory})
endfunction()

View File

@ -7,7 +7,8 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMake")
include(CompilerFlags)
include(RealmCore)
download_realm_core(0.96.2)
set(REALM_CORE_VERSION "0.96.2" CACHE STRING "")
use_realm_core(${REALM_CORE_VERSION})
include_directories(${REALM_CORE_INCLUDE_DIR} src external/pegtl)

View File

@ -28,6 +28,14 @@ platforms when integrated into a binding.
make
```
If you wish to build against a local version of core you can invoke `cmake` like so:
```
cmake -DREALM_CORE_VERSION=/path/to/realm-core
```
The given core tree will be built as part of the object store build.
## Testing
```