diff options
| author | Dawsyn Schraiber <[email protected]> | 2023-09-02 09:55:10 -0400 |
|---|---|---|
| committer | Dawsyn Schraiber <[email protected]> | 2023-09-02 09:55:10 -0400 |
| commit | 1b8af4198f7f18ccbfb336709f20a88e26e2b195 (patch) | |
| tree | 90a474cfd7085355e4e1d7ae9831da7d65e9e693 /test/CMakeLists.txt | |
| parent | f76e1efbe420af14078eb1a98551804b830c99c1 (diff) | |
| download | active-drag-system-1b8af4198f7f18ccbfb336709f20a88e26e2b195.tar.gz active-drag-system-1b8af4198f7f18ccbfb336709f20a88e26e2b195.tar.bz2 active-drag-system-1b8af4198f7f18ccbfb336709f20a88e26e2b195.zip | |
Project Structure and Build System
Diffstat (limited to 'test/CMakeLists.txt')
| -rw-r--r-- | test/CMakeLists.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt new file mode 100644 index 0000000..9aef78e --- /dev/null +++ b/test/CMakeLists.txt @@ -0,0 +1,14 @@ +enable_testing() + +add_executable( + hello_test + hello_test.cc +) +target_link_libraries( + hello_test + GTest::gtest_main +) + +include(GoogleTest) +gtest_discover_tests(hello_test) + |
