Renaming src directory to core; moving main modules to top-level directory.

This commit is contained in:
Ruben Ayrapetyan 2015-02-13 22:18:28 +03:00
parent b3cfd40478
commit 8dc4950590
186 changed files with 15 additions and 16 deletions

View File

@ -177,20 +177,20 @@ project (Jerry CXX C ASM)
# Include directories
set(INCLUDE_CORE
${CMAKE_SOURCE_DIR}/src)
${CMAKE_SOURCE_DIR}/core)
# Sources
# Platform-specific
# Jerry standalone
# Linux
set(SOURCE_JERRY_STANDALONE_MAIN_LINUX src/main_linux.cpp)
set(SOURCE_JERRY_STANDALONE_MAIN_LINUX main_linux.cpp)
# MCU
# stm32f3
set(SOURCE_JERRY_STANDALONE_MAIN_MCU_STM32F3 src/main_mcu.cpp)
set(SOURCE_JERRY_STANDALONE_MAIN_MCU_STM32F3 main_mcu.cpp)
# stm32f4
set(SOURCE_JERRY_STANDALONE_MAIN_MCU_STM32F4 src/main_mcu.cpp)
set(SOURCE_JERRY_STANDALONE_MAIN_MCU_STM32F4 main_mcu.cpp)
# Unit tests main modules
file(GLOB SOURCE_UNIT_TEST_MAIN_MODULES tests/unit/*.cpp)
@ -218,7 +218,7 @@ project (Jerry CXX C ASM)
# Component targets
# Jerry's Core
add_subdirectory(src)
add_subdirectory(core)
# Jerry's libc
add_subdirectory(jerry-libc)

View File

@ -77,15 +77,15 @@ project (JerryCore CXX C ASM)
# Include directories
set(INCLUDE_CORE
${CMAKE_SOURCE_DIR}/src
${CMAKE_SOURCE_DIR}/src/mem
${CMAKE_SOURCE_DIR}/src/vm
${CMAKE_SOURCE_DIR}/src/ecma/builtin-objects
${CMAKE_SOURCE_DIR}/src/ecma/base
${CMAKE_SOURCE_DIR}/src/ecma/operations
${CMAKE_SOURCE_DIR}/src/parser/collections
${CMAKE_SOURCE_DIR}/src/parser/js
${CMAKE_SOURCE_DIR}/src/jrt)
${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)
# Third-party
# Valgrind

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