diff options
author | Nicky <nicky.dasmijn@posteo.nl> | 2022-09-17 16:50:38 +0200 |
---|---|---|
committer | Nicky <nicky.dasmijn@posteo.nl> | 2022-09-17 16:50:38 +0200 |
commit | 0e5251f7cea691cbe62db2dc587aecd293ec73ed (patch) | |
tree | e94780b63dfab3f3e682d0c41e2c0ad7f9770d08 | |
parent | 7a71cea15bcef59c7085657fba9ae6bdb058cc5b (diff) |
cmake playing jedi mind tricks on me and making me miss
one genex that needed changing.
Interstingly add_custom_target will not complain about a file
that would never be declared as OUTPUT and thus is not really a
valid cmake build target.``
-rw-r--r-- | indra/newview/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index 74faf3d1b6..6bddea25a1 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -1830,7 +1830,7 @@ if (WINDOWS) ) add_custom_target(llpackage ALL DEPENDS - ${CMAKE_CURRENT_BINARY_DIR}/$<IF:$<BOOL:${LL_GENERATOR_IS_MULTI_CONFIG}>,$<CONFIG>,>/touched.bat + ${CMAKE_CFG_INTDIR}/touched.bat ) # temporarily disable packaging of event_host until hg subrepos get # sorted out on the parabuild cluster... |