mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-14 02:27:40 -04:00
27 lines
687 B
CMake
27 lines
687 B
CMake
include_directories("../../CoreLib")
|
|
include_directories("../../FeatureLib")
|
|
include_directories("../../NucleusLib/inc")
|
|
include_directories("../../NucleusLib")
|
|
include_directories("../../PubUtilLib")
|
|
|
|
include_directories(${OPENSSL_INCLUDE_DIR})
|
|
|
|
set(plAgeLoader_SOURCES
|
|
plAgeLoader.cpp
|
|
plAgeLoaderPaging.cpp
|
|
plBackgroundDownloader.cpp
|
|
plResPatcher.cpp
|
|
)
|
|
|
|
set(plAgeLoader_HEADERS
|
|
plAgeLoader.h
|
|
plAgeLoaderCreatable.h
|
|
plBackgroundDownloader.h
|
|
plResPatcher.h
|
|
)
|
|
|
|
add_library(plAgeLoader STATIC ${plAgeLoader_SOURCES} ${plAgeLoader_HEADERS})
|
|
|
|
source_group("Source Files" FILES ${plAgeLoader_SOURCES})
|
|
source_group("Header Files" FILES ${plAgeLoader_HEADERS})
|