mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
Fix broken cmake macro
Only the first config in the list was being seen
This commit is contained in:
parent
58f07aecb4
commit
4b57dde346
|
|
@ -112,7 +112,7 @@ endmacro()
|
|||
macro(addDef def)
|
||||
set(def_configs "")
|
||||
if(${ARGC} GREATER 1)
|
||||
foreach(config "${ARGV1}")
|
||||
foreach(config ${ARGN})
|
||||
__addDef(${def} ${config})
|
||||
endforeach()
|
||||
else()
|
||||
|
|
|
|||
Loading…
Reference in a new issue