summaryrefslogtreecommitdiff
path: root/tests.build/build-system-cmake.script
diff options
context:
space:
mode:
authorAdam Coldrick <adam.coldrick@codethink.co.uk>2014-08-08 11:10:25 +0000
committerAdam Coldrick <adam.coldrick@codethink.co.uk>2014-08-14 13:28:50 +0000
commitbba1d9e9f17edf885e857d0ddcf5b6f41e956b10 (patch)
treea5e5da0b1c02c7c39679d5d8fbba7599b71ab67b /tests.build/build-system-cmake.script
parenta87d850a3b96010dd272bba1624fcf0b230afc6d (diff)
downloadmorph-bba1d9e9f17edf885e857d0ddcf5b6f41e956b10.tar.gz
cmdtests: Use YAML not JSON to represent morphologies
Diffstat (limited to 'tests.build/build-system-cmake.script')
-rwxr-xr-xtests.build/build-system-cmake.script11
1 files changed, 5 insertions, 6 deletions
diff --git a/tests.build/build-system-cmake.script b/tests.build/build-system-cmake.script
index ab5186d7..570a9af7 100755
--- a/tests.build/build-system-cmake.script
+++ b/tests.build/build-system-cmake.script
@@ -38,12 +38,11 @@ EOF
git add CMakeLists.txt
cat <<EOF > hello.morph
-{
- "name": "hello",
- "kind": "chunk",
- "build-system": "cmake",
- "install-commands": ["make DESTDIR=\"\$DESTDIR\" install"]
-}
+name: hello
+kind: chunk
+build-system: cmake
+install-commands:
+ - make DESTDIR="\$DESTDIR" install
EOF
git add hello.morph
git commit --quiet -m "Convert hello to a cmake project"