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.
31 lines
679 B
31 lines
679 B
14 years ago
|
include_directories("../../CoreLib")
|
||
|
include_directories("../../FeatureLib")
|
||
|
include_directories("../../NucleusLib/inc")
|
||
|
include_directories("../../NucleusLib")
|
||
|
include_directories("../../PubUtilLib")
|
||
|
|
||
|
set(plVault_SOURCES
|
||
|
plDniCoordinateInfo.cpp
|
||
|
plVault.cpp
|
||
|
plVaultClientApi.cpp
|
||
|
plVaultConstants.cpp
|
||
|
plVaultNodeAccess.cpp
|
||
|
)
|
||
|
|
||
|
set(plVault_HEADERS
|
||
|
Intern.h
|
||
|
Pch.h
|
||
|
plAgeInfoSource.h
|
||
|
plDniCoordinateInfo.h
|
||
|
plVault.h
|
||
|
plVaultClientApi.h
|
||
|
plVaultConstants.h
|
||
|
plVaultCreatable.h
|
||
|
plVaultNodeAccess.h
|
||
|
)
|
||
|
|
||
|
add_library(plVault STATIC ${plVault_SOURCES} ${plVault_HEADERS})
|
||
|
|
||
|
source_group("Source Files" FILES ${plVault_SOURCES})
|
||
|
source_group("Header Files" FILES ${plVault_HEADERS})
|