aboutsummaryrefslogtreecommitdiff
path: root/targets
diff options
context:
space:
mode:
authorPéter Gál <pgal.u-szeged@partner.samsung.com>2019-07-08 18:25:17 +0200
committerDániel Bátyai <dbatyai@inf.u-szeged.hu>2019-07-08 18:25:17 +0200
commitef5dd5c698f3f23b05498e900468fea6003ec027 (patch)
treee9b4c81c06c92aeb08cf163da62b8c6e93b16f44 /targets
parent2b8c42869417dac8795fe7575557af71d9d9008a (diff)
Rework CMake options to use the new macro config format (#2933)
Updated all feature related CMake option to use JERRY_ format. JerryScript-DCO-1.0-Signed-off-by: Peter Gal pgal.u-szeged@partner.samsung.com
Diffstat (limited to 'targets')
-rw-r--r--targets/particle/Makefile.particle2
-rw-r--r--targets/zephyr/Makefile.zephyr4
2 files changed, 3 insertions, 3 deletions
diff --git a/targets/particle/Makefile.particle b/targets/particle/Makefile.particle
index 6b4cacb2..e8b3a2bb 100644
--- a/targets/particle/Makefile.particle
+++ b/targets/particle/Makefile.particle
@@ -47,7 +47,7 @@ jerrycore:
-DENABLE_ALL_IN_ONE=OFF \
-DJERRY_LIBM=OFF \
-DJERRY_CMDLINE=OFF \
- -DFEATURE_PROFILE=minimal \
+ -DJERRY_PROFILE=minimal \
-DENABLE_STRIP=OFF \
-DEXTERNAL_COMPILE_FLAGS="$(EXT_CFLAGS)" \
-DJERRY_GLOBAL_HEAP_SIZE=$(JERRYHEAP)
diff --git a/targets/zephyr/Makefile.zephyr b/targets/zephyr/Makefile.zephyr
index 3131e4c2..583e37c0 100644
--- a/targets/zephyr/Makefile.zephyr
+++ b/targets/zephyr/Makefile.zephyr
@@ -84,8 +84,8 @@ endif
-DENABLE_LTO=OFF \
-DENABLE_ALL_IN_ONE=OFF \
-DJERRY_CMDLINE=OFF \
- -DFEATURE_PROFILE=$(JERRYPROFILE) \
- -DFEATURE_ERROR_MESSAGES=ON \
+ -DJERRY_PROFILE=$(JERRYPROFILE) \
+ -DJERRY_ERROR_MESSAGES=ON \
-DCMAKE_BUILD_TYPE=MinSizeRel \
-DCMAKE_VERBOSE_MAKEFILE=$(V) \
-DJERRY_GLOBAL_HEAP_SIZE=$(JERRYHEAP) \