summaryrefslogtreecommitdiffstats
path: root/second
diff options
context:
space:
mode:
authorBernhard Guillon <Bernhard.Guillon@begu.org>2026-06-30 21:41:32 +0200
committerBernhard Guillon <Bernhard.Guillon@begu.org>2026-06-30 21:41:32 +0200
commitbf2f3e0acdf98020295732a3a63b7ddbc64a6d6a (patch)
tree5c92e0ea4874d72eefda81ac3c696389c6d68668 /second
parent1c9acabddfdce47a1b7db9275215450802ac709a (diff)
downloadcsharp-cmake-bf2f3e0acdf98020295732a3a63b7ddbc64a6d6a.tar.gz
csharp-cmake-bf2f3e0acdf98020295732a3a63b7ddbc64a6d6a.zip
Fix rebuild tracking by adding DEPENDS parameter for .dll file-level dependencies
Diffstat (limited to 'second')
-rw-r--r--second/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/second/CMakeLists.txt b/second/CMakeLists.txt
index 20703c6..464ee52 100644
--- a/second/CMakeLists.txt
+++ b/second/CMakeLists.txt
@@ -1,6 +1,7 @@
add_dotnet_executable(Second
MAIN Program
SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/Program.cs
+ DEPENDS Baz
)
target_link_dotnet_libraries(Second PRIVATE Baz)