mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
Update CMakeLists.txt
Skip adding properties to precompiled libs
This commit is contained in:
parent
eb380e58a3
commit
e55247e015
|
|
@ -497,6 +497,10 @@ endif()
|
|||
|
||||
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
||||
foreach (TORQUE_LIBRARY ${TORQUE_LINK_LIBRARIES})
|
||||
# Skip if it's a raw library file instead of a target
|
||||
if(TORQUE_LIBRARY MATCHES "\\.(lib|a|so|dylib|dll)$")
|
||||
continue()
|
||||
endif()
|
||||
set_target_properties(${TORQUE_LIBRARY} PROPERTIES
|
||||
FOLDER "Libraries")
|
||||
# remove warnings from 3rd parties.
|
||||
|
|
|
|||
Loading…
Reference in a new issue