diff options
| author | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-01-21 22:52:27 +0100 |
|---|---|---|
| committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-01-22 16:41:25 +0100 |
| commit | 0ce663239371576fcf4ad751d548cf2424525053 (patch) | |
| tree | f7898be6e47bf6efb5362698656355e1562c561c /test cases | |
| parent | 86d5799bc4d945927e26fdcb6e239905e0aa8146 (diff) | |
| download | meson-0ce663239371576fcf4ad751d548cf2424525053.tar.gz | |
Added suport for adding sources to a target
Diffstat (limited to 'test cases')
| -rw-r--r-- | test cases/rewrite/1 basic/addSrc.json | 70 |
1 files changed, 44 insertions, 26 deletions
diff --git a/test cases/rewrite/1 basic/addSrc.json b/test cases/rewrite/1 basic/addSrc.json index b609b0883..6d8c5996c 100644 --- a/test cases/rewrite/1 basic/addSrc.json +++ b/test cases/rewrite/1 basic/addSrc.json @@ -3,63 +3,81 @@ "type": "target", "target": "trivialprog1", "operation": "src_add", - "sources": ["added1.cpp", "added2.cpp"], - "debug": true - }, - { - "type": "target", - "target": "trivialprog2", - "operation": "src_add", - "sources": ["added1.cpp"], - "debug": true + "sources": ["a1.cpp", "a2.cpp"] }, { "type": "target", "target": "trivialprog3", "operation": "src_add", - "sources": ["added1.cpp", "added2.cpp", "added3.cpp"], - "debug": true + "sources": ["a5.cpp"] }, { "type": "target", "target": "trivialprog4", "operation": "src_add", - "sources": ["added1.cpp"], - "debug": true + "sources": ["a5.cpp"] }, { "type": "target", "target": "trivialprog5", "operation": "src_add", - "sources": ["added1.cpp"], - "debug": true + "sources": ["a3.cpp"] }, { "type": "target", "target": "trivialprog6", "operation": "src_add", - "sources": ["added1.cpp"], - "debug": true + "sources": ["a4.cpp"] }, { "type": "target", - "target": "trivialprog7", + "target": "trivialprog9", "operation": "src_add", - "sources": ["added1.cpp"], - "debug": true + "sources": ["a6.cpp"] + }, + { + "type": "target", + "target": "trivialprog1", + "operation": "test" + }, + { + "type": "target", + "target": "trivialprog2", + "operation": "test" + }, + { + "type": "target", + "target": "trivialprog3", + "operation": "test" + }, + { + "type": "target", + "target": "trivialprog4", + "operation": "test" + }, + { + "type": "target", + "target": "trivialprog5", + "operation": "test" + }, + { + "type": "target", + "target": "trivialprog6", + "operation": "test" + }, + { + "type": "target", + "target": "trivialprog7", + "operation": "test" }, { "type": "target", "target": "trivialprog8", - "operation": "src_add", - "sources": ["added1.cpp"], - "debug": true + "operation": "test" }, { "type": "target", "target": "trivialprog9", - "operation": "src_add", - "sources": ["added1.cpp"], - "debug": true + "operation": "test" } ] |
