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.
21 lines
437 B
21 lines
437 B
14 years ago
|
include_directories("../../CoreLib")
|
||
|
|
||
|
set(plContainer_SOURCES
|
||
|
hsStringTable.cpp
|
||
|
plConfigInfo.cpp
|
||
|
plConfigInfoLogging.cpp
|
||
|
plKeysAndValues.cpp
|
||
|
)
|
||
|
|
||
|
set(plContainer_HEADERS
|
||
|
hsStringTable.h
|
||
|
plConfigInfo.h
|
||
|
plContainer.h
|
||
|
plKeysAndValues.h
|
||
|
)
|
||
|
|
||
|
add_library(plContainer STATIC ${plContainer_SOURCES} ${plContainer_HEADERS})
|
||
|
|
||
|
source_group("Source Files" FILES ${plContainer_SOURCES})
|
||
|
source_group("Header Files" FILES ${plContainer_HEADERS})
|