From 3b05b33ff30b49ab0a3c4500d9d11c700bdc1a02 Mon Sep 17 00:00:00 2001 From: Bernhard Guillon Date: Tue, 30 Jun 2026 22:21:31 +0200 Subject: Add Third project: two-file executable with globbing for *.cs via CONFIGURE_DEPENDS --- third/CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 third/CMakeLists.txt (limited to 'third/CMakeLists.txt') diff --git a/third/CMakeLists.txt b/third/CMakeLists.txt new file mode 100644 index 0000000..df0b157 --- /dev/null +++ b/third/CMakeLists.txt @@ -0,0 +1,8 @@ +add_dotnet_target(Third) + +file(GLOB THIRD_SOURCES CONFIGURE_DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/*.cs) + +add_dotnet_executable(Third + MAIN Program + SOURCES ${THIRD_SOURCES} +) -- cgit v1.2.3