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.
|
|
|
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
|
|
|
|
plTimerCallbackManager.cpp
|
|
|
|
pnBranchDate.cpp
|
|
|
|
pnBuildDates.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
add_library(pnTimer STATIC ${pnTimer_HEADERS} ${pnTimer_SOURCES})
|
|
|
|
target_link_libraries(pnTimer CoreLib)
|
|
|
|
|
|
|
|
source_group("Header Files" FILES ${pnTimer_HEADERS})
|
|
|
|
source_group("Source Files" FILES ${pnTimer_SOURCES})
|