We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe0b31a commit af9a59bCopy full SHA for af9a59b
1 file changed
smoke/CMakeLists.txt
@@ -3,7 +3,15 @@ project(NablaAssetManifestsSmoke NONE)
3
4
include("${CMAKE_CURRENT_LIST_DIR}/../nam.cmake")
5
6
+option(NAM_SMOKE_NO_SYMLINKS "Force copy materialization in the smoke consumer." OFF)
7
+
8
+set(_nam_extra_args)
9
+if (NAM_SMOKE_NO_SYMLINKS)
10
+ list(APPEND _nam_extra_args NO_SYMLINKS)
11
+endif()
12
13
nam_add_channel_target(
14
TARGET media
15
DESTINATION_ROOT "${CMAKE_CURRENT_BINARY_DIR}"
16
+ ${_nam_extra_args}
17
)
0 commit comments