diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 8e4200e..813ceb9 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -11,3 +11,5 @@ endif() if(BUILD_CXX) add_executable(hello_world hello_world.cpp) endif() + +add_executable(test EXCLUDE_FROM_ALL test.cpp) diff --git a/test/test.cpp b/test/test.cpp new file mode 100644 index 0000000..4cce7f6 --- /dev/null +++ b/test/test.cpp @@ -0,0 +1,3 @@ +int main() { + return 0; +}