projects
/
sdk
/
tools
/
netcoredbg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2b1efab
)
Add default value for `CLR_BIN_DIR` cmake variable
author
Andrey Okoshkin
<a.okoshkin@samsung.com>
Wed, 31 Jan 2018 15:09:11 +0000
(18:09 +0300)
committer
Andrey Okoshkin
<a.okoshkin@samsung.com>
Wed, 31 Jan 2018 15:09:11 +0000
(18:09 +0300)
By default it's equal to `CLR_DIR`.
CMakeLists.txt
patch
|
blob
|
history
diff --git
a/CMakeLists.txt
b/CMakeLists.txt
index 3b37edab5c4224f11e95596f5ba573054aa43f60..bb85c1c1fed74e6be457de0950fcc0d6cba8b850 100644
(file)
--- a/
CMakeLists.txt
+++ b/
CMakeLists.txt
@@
-2,6
+2,7
@@
cmake_minimum_required(VERSION 2.8.12.2)
project(netcoredbg)
set(CLR_DIR "$ENV{HOME}/work/coreclr" CACHE FILEPATH "Path to coreclr directory")
+set(CLR_BIN_DIR "${CLR_DIR}" CACHE FILEPATH "Path to coreclr bin directory")
set(BUILD_MANAGED ON CACHE BOOL "Build managed part")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Wno-null-conversion")