aboutsummaryrefslogtreecommitdiff
path: root/jerry-core
diff options
context:
space:
mode:
authorAkos Kiss <akiss@inf.u-szeged.hu>2016-02-10 22:49:00 +0100
committerAkos Kiss <akiss@inf.u-szeged.hu>2016-02-11 09:29:40 +0100
commitdc84775207ee7aa796d78f009c9d3cefdb2a7be2 (patch)
tree978ca319234459444ddfd8eddf7bad5c96378547 /jerry-core
parent0a83b317c762949dadd04c8c6985483b21a56c2d (diff)
Remove references to non-existent parser/js/bc and parser/js/collections directories
With the merge of the CBC parser, these directories got removed. The update of the jerry-core/CMakeLists.txt must have been forgotten, probably because the kept references caused no errors. Cleaning up now. JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
Diffstat (limited to 'jerry-core')
-rw-r--r--jerry-core/CMakeLists.txt6
1 files changed, 0 insertions, 6 deletions
diff --git a/jerry-core/CMakeLists.txt b/jerry-core/CMakeLists.txt
index 901388bb..664475c9 100644
--- a/jerry-core/CMakeLists.txt
+++ b/jerry-core/CMakeLists.txt
@@ -113,8 +113,6 @@ project (JerryCore CXX C ASM)
${CMAKE_SOURCE_DIR}/jerry-core/ecma/base
${CMAKE_SOURCE_DIR}/jerry-core/ecma/operations
${CMAKE_SOURCE_DIR}/jerry-core/parser/js
- ${CMAKE_SOURCE_DIR}/jerry-core/parser/js/bc
- ${CMAKE_SOURCE_DIR}/jerry-core/parser/js/collections
${CMAKE_SOURCE_DIR}/jerry-core/parser/regexp
${CMAKE_SOURCE_DIR}/jerry-core/jrt)
@@ -133,8 +131,6 @@ project (JerryCore CXX C ASM)
file(GLOB SOURCE_CORE_ECMA_BASE ecma/base/*.cpp)
file(GLOB SOURCE_CORE_ECMA_OPERATIONS ecma/operations/*.cpp)
file(GLOB SOURCE_CORE_PARSER_JS parser/js/*.cpp)
- file(GLOB SOURCE_CORE_PARSER_JS_BC parser/js/bc/*.cpp)
- file(GLOB SOURCE_CORE_PARSER_JS_COLLECTIONS parser/js/collections/*.cpp)
file(GLOB SOURCE_CORE_PARSER_REGEXP parser/regexp/*.cpp)
file(GLOB SOURCE_CORE_JRT jrt/*.cpp)
@@ -148,8 +144,6 @@ project (JerryCore CXX C ASM)
${SOURCE_CORE_ECMA_BASE}
${SOURCE_CORE_ECMA_OPERATIONS}
${SOURCE_CORE_PARSER_JS}
- ${SOURCE_CORE_PARSER_JS_BC}
- ${SOURCE_CORE_PARSER_JS_COLLECTIONS}
${SOURCE_CORE_PARSER_REGEXP}
${SOURCE_CORE_JRT})