Renaming core -> jerry-core.

This commit is contained in:
Ruben Ayrapetyan 2015-02-17 19:00:34 +03:00
parent b6d018d019
commit 88353e93cf
183 changed files with 14 additions and 14 deletions

View File

@ -185,7 +185,7 @@ project (Jerry CXX C ASM)
# Include directories
# Core interface
set(INCLUDE_CORE_INTERFACE
${CMAKE_SOURCE_DIR}/core)
${CMAKE_SOURCE_DIR}/jerry-core)
# Sources
# Platform-specific
@ -226,7 +226,7 @@ project (Jerry CXX C ASM)
# Component targets
# Jerry's Core
add_subdirectory(core)
add_subdirectory(jerry-core)
# Jerry's libc
add_subdirectory(jerry-libc)

View File

@ -38,13 +38,13 @@ project (JerryCore CXX C ASM)
# Build modes
# Debug
set(DEFINES_JERRY_DEBUG JERRY_ENABLE_PRETTY_PRINTER)
# Release
set(DEFINES_JERRY_RELEASE JERRY_NDEBUG)
# Unit tests
set(DEFINES_JERRY_UNITTESTS )
# Modifiers
# Full profile
set(DEFINES_FULL_PROFILE CONFIG_ECMA_NUMBER_TYPE=CONFIG_ECMA_NUMBER_FLOAT64)
@ -80,15 +80,15 @@ project (JerryCore CXX C ASM)
# Include directories
set(INCLUDE_CORE
${CMAKE_SOURCE_DIR}/core
${CMAKE_SOURCE_DIR}/core/mem
${CMAKE_SOURCE_DIR}/core/vm
${CMAKE_SOURCE_DIR}/core/ecma/builtin-objects
${CMAKE_SOURCE_DIR}/core/ecma/base
${CMAKE_SOURCE_DIR}/core/ecma/operations
${CMAKE_SOURCE_DIR}/core/parser/collections
${CMAKE_SOURCE_DIR}/core/parser/js
${CMAKE_SOURCE_DIR}/core/jrt)
${CMAKE_SOURCE_DIR}/jerry-core
${CMAKE_SOURCE_DIR}/jerry-core/mem
${CMAKE_SOURCE_DIR}/jerry-core/vm
${CMAKE_SOURCE_DIR}/jerry-core/ecma/builtin-objects
${CMAKE_SOURCE_DIR}/jerry-core/ecma/base
${CMAKE_SOURCE_DIR}/jerry-core/ecma/operations
${CMAKE_SOURCE_DIR}/jerry-core/parser/collections
${CMAKE_SOURCE_DIR}/jerry-core/parser/js
${CMAKE_SOURCE_DIR}/jerry-core/jrt)
# Third-party
# Valgrind

Some files were not shown because too many files have changed in this diff Show More