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.
29 lines
625 B
29 lines
625 B
14 years ago
|
include_directories("../../CoreLib")
|
||
|
include_directories("../../NucleusLib")
|
||
|
include_directories("../../NucleusLib/inc")
|
||
|
|
||
|
set(pnKeyedObject_HEADERS
|
||
|
hsKeyedObject.h
|
||
|
plFixedKey.h
|
||
|
plKey.h
|
||
|
plKeyImp.h
|
||
|
plMsgForwarder.h
|
||
|
plReceiver.h
|
||
|
plUoid.h
|
||
|
pnKeyedObjectCreatable.h
|
||
|
)
|
||
|
|
||
|
set(pnKeyedObject_SOURCES
|
||
|
hsKeyedObject.cpp
|
||
|
plFixedKey.cpp
|
||
|
plKey.cpp
|
||
|
plKeyImp.cpp
|
||
|
plMsgForwarder.cpp
|
||
|
plUoid.cpp
|
||
|
)
|
||
|
|
||
|
add_library(pnKeyedObject STATIC ${pnKeyedObject_HEADERS} ${pnKeyedObject_SOURCES})
|
||
|
|
||
|
source_group("Header Files" FILES ${pnKeyedObject_HEADERS})
|
||
|
source_group("Source Files" FILES ${pnKeyedObject_SOURCES})
|