summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/CSharpCustomCommand/CommandWithOutput.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/RunCMake/CSharpCustomCommand/CommandWithOutput.cmake')
-rw-r--r--Tests/RunCMake/CSharpCustomCommand/CommandWithOutput.cmake13
1 files changed, 13 insertions, 0 deletions
diff --git a/Tests/RunCMake/CSharpCustomCommand/CommandWithOutput.cmake b/Tests/RunCMake/CSharpCustomCommand/CommandWithOutput.cmake
new file mode 100644
index 000000000..68341fa88
--- /dev/null
+++ b/Tests/RunCMake/CSharpCustomCommand/CommandWithOutput.cmake
@@ -0,0 +1,13 @@
+enable_language(CSharp)
+
+add_executable(CSharpCustomCommand dummy.cs)
+
+add_custom_command(OUTPUT ${generatedFileName}
+ COMMAND ${CMAKE_COMMAND} -E copy_if_different
+ ${inputFileName} ${generatedFileName}
+ MAIN_DEPENDENCY ${inputFileName}
+ COMMENT "${commandComment}")
+
+target_sources(CSharpCustomCommand PRIVATE
+ ${inputFileName}
+ ${generatedFileName})