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.
24 lines
516 B
24 lines
516 B
14 years ago
|
include_directories("../../CoreLib")
|
||
|
include_directories("../../NucleusLib")
|
||
|
include_directories("../../NucleusLib/inc")
|
||
|
|
||
|
set(pnTimer_HEADERS
|
||
|
plTimedValue.h
|
||
|
plTimerCallbackManager.h
|
||
|
pnBuildDates.h
|
||
|
pnTimerCreatable.h
|
||
|
)
|
||
|
|
||
|
set(pnTimer_SOURCES
|
||
|
hsTimer.cpp
|
||
|
plTimedValue.cpp
|
||
|
plTimerCallbackManager.cpp
|
||
|
pnBranchDate.cpp
|
||
|
pnBuildDates.cpp
|
||
|
)
|
||
|
|
||
|
add_library(pnTimer STATIC ${pnTimer_HEADERS} ${pnTimer_SOURCES})
|
||
|
|
||
|
source_group("Header Files" FILES ${pnTimer_HEADERS})
|
||
|
source_group("Source Files" FILES ${pnTimer_SOURCES})
|