2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 10:37:41 -04:00

MaxPlasmaLights works better when it has the resources file compiled in... Just sayin'

This commit is contained in:
2011-04-17 23:32:08 -04:00
parent 6352d95272
commit f4685cc990

View File

@ -18,10 +18,15 @@ set(MaxPlasmaLights_HEADERS
plRTProjDirLightClassDesc.h
plRTProjDirLightPBDec.h
prim.h
resource.h
target.h
)
set(MaxPlasmaLights_RESOURCES
plRTLights.rc
resource.h
)
set(MaxPlasmaLights_SOURCES
DLLEntry.cpp
plRealTimeLightBase.cpp
@ -29,7 +34,7 @@ set(MaxPlasmaLights_SOURCES
plRTProjDirLight.cpp
)
add_library(MaxPlasmaLights SHARED ${MaxPlasmaLights_HEADERS} ${MaxPlasmaLights_SOURCES})
add_library(MaxPlasmaLights SHARED ${MaxPlasmaLights_HEADERS} ${MaxPlasmaLights_RESOURCES} ${MaxPlasmaLights_SOURCES})
set_target_properties(MaxPlasmaLights PROPERTIES SUFFIX ".dlo")
@ -134,4 +139,5 @@ if (WIN32)
endif(WIN32)
source_group("Header Files" FILES ${MaxPlasmaLights_HEADERS})
source_group("Resource Files" FILES ${MaxPlasmaLights_RESOURCES})
source_group("Source Files" FILES ${MaxPlasmaLights_SOURCES})