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.
26 lines
654 B
26 lines
654 B
include_directories(../../CoreLib) |
|
include_directories(../../PubUtilLib) |
|
|
|
include_directories(${EXPAT_INCLUDE_DIR}) |
|
|
|
add_definitions(-DWIN32) |
|
if(EXPAT_IS_STATIC) |
|
add_definitions(-DXML_STATIC) |
|
endif() |
|
|
|
set(pfLocalizationMgr_SOURCES |
|
pfLocalizationDataMgr.cpp |
|
pfLocalizationMgr.cpp |
|
pfLocalizedString.cpp |
|
) |
|
|
|
set(pfLocalizationMgr_HEADERS |
|
pfLocalizationDataMgr.h |
|
pfLocalizationMgr.h |
|
pfLocalizedString.h |
|
) |
|
|
|
add_library(pfLocalizationMgr STATIC ${pfLocalizationMgr_SOURCES} ${pfLocalizationMgr_HEADERS}) |
|
|
|
source_group("Source Files" FILES ${pfLocalizationMgr_SOURCES}) |
|
source_group("Header Files" FILES ${pfLocalizationMgr_HEADERS})
|
|
|