summaryrefslogtreecommitdiff
path: root/profiler
diff options
context:
space:
mode:
authorAleksei Vereshchagin <avereschagin@dev.rtsoft.ru>2018-08-08 20:08:40 +0300
committerPetr Bred/AI Ecosystem Lab /SRR/Staff Engineer/삼성전자 <p.bred@samsung.com>2018-08-20 19:36:12 +0300
commit46d6b25c11afcf8dbb9bb54ee029bd0964388083 (patch)
tree30079dd003a926958b0996b56fa20eb7776fd8ff /profiler
parenteb1042a377b8eaebf7501ca21baf32a9a5a628a6 (diff)
downloadheaptrack-46d6b25c11afcf8dbb9bb54ee029bd0964388083.tar.gz
heaptrack-46d6b25c11afcf8dbb9bb54ee029bd0964388083.tar.bz2
heaptrack-46d6b25c11afcf8dbb9bb54ee029bd0964388083.zip
Change installation path in spec-file
Diffstat (limited to 'profiler')
-rw-r--r--profiler/profiler/CMakeLists.txt2
-rw-r--r--profiler/profiler/src/CMakeLists.txt4
2 files changed, 2 insertions, 4 deletions
diff --git a/profiler/profiler/CMakeLists.txt b/profiler/profiler/CMakeLists.txt
index 4a03548..e8f79a9 100644
--- a/profiler/profiler/CMakeLists.txt
+++ b/profiler/profiler/CMakeLists.txt
@@ -2,10 +2,8 @@ cmake_minimum_required(VERSION 2.8.12.2)
project(profiler)
-set(CMAKE_INSTALL_PREFIX ${CMAKE_BINARY_DIR})
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -g -std=c++11")
add_subdirectory(
src
)
-
diff --git a/profiler/profiler/src/CMakeLists.txt b/profiler/profiler/src/CMakeLists.txt
index adb7fe0..68b27ef 100644
--- a/profiler/profiler/src/CMakeLists.txt
+++ b/profiler/profiler/src/CMakeLists.txt
@@ -23,7 +23,7 @@ set(PROFILER_SOURCES
set(CLR_INCLUDES
${CLR_SRC_DIR}/src/pal/inc/rt
${CLR_SRC_DIR}/src/pal/prebuilt/inc
- ${CLR_SRC_DIR}/src/pal/inc
+ ${CLR_SRC_DIR}/src/pal/inc
${CLR_SRC_DIR}/src/inc
${CLR_BIN_DIR}/inc)
include_directories(AFTER ${CLR_INCLUDES})
@@ -31,4 +31,4 @@ include_directories(AFTER ${CLR_INCLUDES})
add_library(profiler SHARED ${PROFILER_SOURCES})
target_link_libraries(profiler ${PROFILER_LIBRARIES})
-install(TARGETS profiler DESTINATION lib)
+install(TARGETS profiler DESTINATION lib/heaptrack)