Renaming core -> jerry-core.
This commit is contained in:
+2
-2
@@ -185,7 +185,7 @@ project (Jerry CXX C ASM)
|
|||||||
# Include directories
|
# Include directories
|
||||||
# Core interface
|
# Core interface
|
||||||
set(INCLUDE_CORE_INTERFACE
|
set(INCLUDE_CORE_INTERFACE
|
||||||
${CMAKE_SOURCE_DIR}/core)
|
${CMAKE_SOURCE_DIR}/jerry-core)
|
||||||
|
|
||||||
# Sources
|
# Sources
|
||||||
# Platform-specific
|
# Platform-specific
|
||||||
@@ -226,7 +226,7 @@ project (Jerry CXX C ASM)
|
|||||||
|
|
||||||
# Component targets
|
# Component targets
|
||||||
# Jerry's Core
|
# Jerry's Core
|
||||||
add_subdirectory(core)
|
add_subdirectory(jerry-core)
|
||||||
|
|
||||||
# Jerry's libc
|
# Jerry's libc
|
||||||
add_subdirectory(jerry-libc)
|
add_subdirectory(jerry-libc)
|
||||||
|
|||||||
@@ -38,13 +38,13 @@ project (JerryCore CXX C ASM)
|
|||||||
# Build modes
|
# Build modes
|
||||||
# Debug
|
# Debug
|
||||||
set(DEFINES_JERRY_DEBUG JERRY_ENABLE_PRETTY_PRINTER)
|
set(DEFINES_JERRY_DEBUG JERRY_ENABLE_PRETTY_PRINTER)
|
||||||
|
|
||||||
# Release
|
# Release
|
||||||
set(DEFINES_JERRY_RELEASE JERRY_NDEBUG)
|
set(DEFINES_JERRY_RELEASE JERRY_NDEBUG)
|
||||||
|
|
||||||
# Unit tests
|
# Unit tests
|
||||||
set(DEFINES_JERRY_UNITTESTS )
|
set(DEFINES_JERRY_UNITTESTS )
|
||||||
|
|
||||||
# Modifiers
|
# Modifiers
|
||||||
# Full profile
|
# Full profile
|
||||||
set(DEFINES_FULL_PROFILE CONFIG_ECMA_NUMBER_TYPE=CONFIG_ECMA_NUMBER_FLOAT64)
|
set(DEFINES_FULL_PROFILE CONFIG_ECMA_NUMBER_TYPE=CONFIG_ECMA_NUMBER_FLOAT64)
|
||||||
@@ -80,15 +80,15 @@ project (JerryCore CXX C ASM)
|
|||||||
|
|
||||||
# Include directories
|
# Include directories
|
||||||
set(INCLUDE_CORE
|
set(INCLUDE_CORE
|
||||||
${CMAKE_SOURCE_DIR}/core
|
${CMAKE_SOURCE_DIR}/jerry-core
|
||||||
${CMAKE_SOURCE_DIR}/core/mem
|
${CMAKE_SOURCE_DIR}/jerry-core/mem
|
||||||
${CMAKE_SOURCE_DIR}/core/vm
|
${CMAKE_SOURCE_DIR}/jerry-core/vm
|
||||||
${CMAKE_SOURCE_DIR}/core/ecma/builtin-objects
|
${CMAKE_SOURCE_DIR}/jerry-core/ecma/builtin-objects
|
||||||
${CMAKE_SOURCE_DIR}/core/ecma/base
|
${CMAKE_SOURCE_DIR}/jerry-core/ecma/base
|
||||||
${CMAKE_SOURCE_DIR}/core/ecma/operations
|
${CMAKE_SOURCE_DIR}/jerry-core/ecma/operations
|
||||||
${CMAKE_SOURCE_DIR}/core/parser/collections
|
${CMAKE_SOURCE_DIR}/jerry-core/parser/collections
|
||||||
${CMAKE_SOURCE_DIR}/core/parser/js
|
${CMAKE_SOURCE_DIR}/jerry-core/parser/js
|
||||||
${CMAKE_SOURCE_DIR}/core/jrt)
|
${CMAKE_SOURCE_DIR}/jerry-core/jrt)
|
||||||
|
|
||||||
# Third-party
|
# Third-party
|
||||||
# Valgrind
|
# Valgrind
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user