From 5cfa8aa6ab22157045348a25504c05bef4886abf Mon Sep 17 00:00:00 2001 From: ReinUsesLisp Date: Thu, 23 Aug 2018 04:59:57 -0300 Subject: aloha --- tests/CMakeLists.txt | 6 ++++++ tests/main.cpp | 11 +++++++++++ 2 files changed, 17 insertions(+) create mode 100644 tests/CMakeLists.txt create mode 100644 tests/main.cpp (limited to 'tests') diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt new file mode 100644 index 0000000..a3f9534 --- /dev/null +++ b/tests/CMakeLists.txt @@ -0,0 +1,6 @@ +add_executable(sirit_tests + main.cpp) +target_link_libraries(sirit_tests PRIVATE sirit) +target_include_directories(sirit_tests PRIVATE . ../include) + +add_test(sirit_tests sirit_tests) diff --git a/tests/main.cpp b/tests/main.cpp new file mode 100644 index 0000000..c5c520f --- /dev/null +++ b/tests/main.cpp @@ -0,0 +1,11 @@ +/* This file is part of the sirit project. + * Copyright (c) 2018 ReinUsesLisp + * This software may be used and distributed according to the terms of the GNU + * General Public License version 2 or any later version. + */ + +#include + +int main(int argc, char **argv) { + return 0; +} -- cgit v1.2.3