aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cmake/examples/simple
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/examples/simple')
-rw-r--r--cmake/examples/simple/CMakeLists.txt12
-rw-r--r--cmake/examples/simple/foo.cpp6
2 files changed, 0 insertions, 18 deletions
diff --git a/cmake/examples/simple/CMakeLists.txt b/cmake/examples/simple/CMakeLists.txt
deleted file mode 100644
index 4f8859e..0000000
--- a/cmake/examples/simple/CMakeLists.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-cmake_minimum_required(VERSION 3.1)
-
-project(example_simple)
-
-include(../../common.cmake)
-
-add_executable(foo foo.cpp)
-
-install(TARGETS foo RUNTIME DESTINATION bin)
-if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
- install(FILES "$<TARGET_PDB_FILE:foo>" DESTINATION bin OPTIONAL)
-endif()
diff --git a/cmake/examples/simple/foo.cpp b/cmake/examples/simple/foo.cpp
deleted file mode 100644
index b9d3132..0000000
--- a/cmake/examples/simple/foo.cpp
+++ /dev/null
@@ -1,6 +0,0 @@
-#include <iostream>
-
-int main() {
- std::cout << "foo\n";
- return 0;
-}