You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
753 B
35 lines
753 B
14 years ago
|
include_directories(../../CoreLib)
|
||
|
include_directories(../../NucleusLib)
|
||
|
include_directories(../../NucleusLib/inc)
|
||
|
include_directories(../../PubUtilLib)
|
||
|
|
||
|
if(WIN32)
|
||
|
add_definitions(-DWIN32)
|
||
|
endif(WIN32)
|
||
|
|
||
|
set(pfSurface_SOURCES
|
||
|
plDistOpacityMod.cpp
|
||
|
plFadeOpacityLay.cpp
|
||
|
plFadeOpacityMod.cpp
|
||
|
plGrabCubeMap.cpp
|
||
|
plLayerAVI.cpp
|
||
|
plLayerBink.cpp
|
||
|
plLayerMovie.cpp
|
||
|
)
|
||
|
|
||
|
set(pfSurface_HEADERS
|
||
|
pfSurfaceCreatable.h
|
||
|
plDistOpacityMod.h
|
||
|
plFadeOpacityLay.h
|
||
|
plFadeOpacityMod.h
|
||
|
plGrabCubeMap.h
|
||
|
plLayerAVI.h
|
||
|
plLayerBink.h
|
||
|
plLayerMovie.h
|
||
|
)
|
||
|
|
||
|
add_library(pfSurface STATIC ${pfSurface_SOURCES} ${pfSources_HEADERS})
|
||
|
|
||
|
source_group("Source Files" FILES ${pfSurface_SOURCES})
|
||
|
source_group("Header Files" FILES ${pfSurface_HEADERS})
|