mirror of
https://github.com/yse/easy_profiler.git
synced 2024-12-28 01:04:41 +08:00
13 lines
178 B
CMake
13 lines
178 B
CMake
|
project(profiler_sample)
|
||
|
|
||
|
set(CPP_FILES
|
||
|
main.cpp
|
||
|
)
|
||
|
|
||
|
set(SOURCES
|
||
|
${CPP_FILES}
|
||
|
)
|
||
|
|
||
|
add_executable(${PROJECT_NAME} ${SOURCES})
|
||
|
|
||
|
target_link_libraries(${PROJECT_NAME} easy_profiler)
|