summaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/example.cc8
-rw-r--r--tests/posix.json10
-rw-r--r--tests/win64.json10
3 files changed, 0 insertions, 28 deletions
diff --git a/tests/example.cc b/tests/example.cc
deleted file mode 100644
index dfef2e4..0000000
--- a/tests/example.cc
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <string>
-#include <iostream>
-
-int main(int argc, char** argv)
-{
- std::cout << "hello, world!\n";
- return 0;
-}
diff --git a/tests/posix.json b/tests/posix.json
deleted file mode 100644
index 17a6022..0000000
--- a/tests/posix.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "compiler_path": "g++",
- "compiler_std": "c++20",
- "headers_path": ["lib"],
- "sources_path": ["example.cc"],
- "output_name": "example.elf",
- "compiler_flags": ["-fPIC"],
- "cpp_macros": ["FOO_MACRO"],
- "run_after_build": true
-}
diff --git a/tests/win64.json b/tests/win64.json
deleted file mode 100644
index 1712d8b..0000000
--- a/tests/win64.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "compiler_path": "x86_64-w64-mingw32-g++",
- "compiler_std": "c++20",
- "headers_path": ["lib"],
- "sources_path": ["example.cc"],
- "output_name": "example.elf",
- "compiler_flags": ["-fPIC"],
- "cpp_macros": ["FOO_MACRO"],
- "run_after_build": true
-}