mirror of
https://github.com/yse/easy_profiler.git
synced 2024-12-26 08:01:51 +08:00
18 lines
233 B
CMake
18 lines
233 B
CMake
project(profiling_tool)
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
set(
|
|
ROOT
|
|
${CMAKE_CURRENT_LIST_DIR}
|
|
)
|
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY
|
|
${ROOT}/bin
|
|
)
|
|
|
|
include_directories(
|
|
include
|
|
)
|
|
|
|
add_subdirectory(src)
|
|
add_subdirectory(sample) |