mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-15 16:44:36 +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
1 changed files with 1 additions and 1 deletions
|
|
@ -112,7 +112,7 @@ endmacro()
|
||||||
macro(addDef def)
|
macro(addDef def)
|
||||||
set(def_configs "")
|
set(def_configs "")
|
||||||
if(${ARGC} GREATER 1)
|
if(${ARGC} GREATER 1)
|
||||||
foreach(config "${ARGV1}")
|
foreach(config ${ARGN})
|
||||||
__addDef(${def} ${config})
|
__addDef(${def} ${config})
|
||||||
endforeach()
|
endforeach()
|
||||||
else()
|
else()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue