mirror of
https://github.com/EQEmu/Server.git
synced 2026-01-06 01:03:52 +00:00
23 lines
455 B
CMake
23 lines
455 B
CMake
CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
|
|
|
|
SET(eqperf_sources
|
|
eqp_profile_event.cpp
|
|
eqp_profile_timer.cpp
|
|
eqp_profiler.cpp
|
|
eqp_profiler_node.cpp
|
|
)
|
|
|
|
SET(eqperf_headers
|
|
eqp_profile_event.h
|
|
eqp_profile_function.h
|
|
eqp_profile_timer.h
|
|
eqp_profiler.h
|
|
eqp_profiler_node.h
|
|
)
|
|
|
|
ADD_LIBRARY(eqperf SHARED ${eqperf_sources} ${eqperf_headers})
|
|
|
|
INSTALL(TARGETS eqperf RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX})
|
|
|
|
SET(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
|