Update to core 1.2.0

This commit is contained in:
Thomas Goyne 2016-06-30 12:02:34 -07:00
parent aaa811306e
commit 8293675bd6
2 changed files with 3 additions and 3 deletions

View File

@ -28,8 +28,8 @@ function(use_realm_core version_or_path_to_source)
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")
set(core_url "https://static.realm.io/downloads/core/realm-core-${core_version}.tar.xz")
set(core_tarball_name "realm-core-${core_version}.tar.xz")
set(core_temp_tarball "/tmp/${core_tarball_name}")
set(core_directory_parent "${CMAKE_CURRENT_SOURCE_DIR}${CMAKE_FILES_DIRECTORY}")
set(core_directory "${core_directory_parent}/realm-core-${core_version}")

View File

@ -10,7 +10,7 @@ include(CompilerFlags)
include(Sanitizers)
include(RealmCore)
set(REALM_CORE_VERSION "1.1.0" CACHE STRING "")
set(REALM_CORE_VERSION "1.2.0" CACHE STRING "")
use_realm_core(${REALM_CORE_VERSION})
set(PEGTL_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external/pegtl)