Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Root
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
为了安全,强烈建议开启2FA双因子认证:User Settings -> Account -> Enable two-factor authentication!!!
Show more breadcrumbs
cxwx
Root
Commits
3516c432
Commit
3516c432
authored
8 years ago
by
Pere Mato Vila
Browse files
Options
Downloads
Patches
Plain Diff
Added warning (ROOT-8546)
parent
c355561c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cmake/modules/RootNewMacros.cmake
+0
-1
0 additions, 1 deletion
cmake/modules/RootNewMacros.cmake
interpreter/CMakeLists.txt
+4
-0
4 additions, 0 deletions
interpreter/CMakeLists.txt
with
4 additions
and
1 deletion
cmake/modules/RootNewMacros.cmake
+
0
−
1
View file @
3516c432
...
@@ -728,7 +728,6 @@ function(ROOT_INSTALL_HEADERS)
...
@@ -728,7 +728,6 @@ function(ROOT_INSTALL_HEADERS)
set
(
filter
"(
${
filter
}
)"
)
set
(
filter
"(
${
filter
}
)"
)
string
(
REPLACE
${
CMAKE_SOURCE_DIR
}
""
tgt
${
CMAKE_CURRENT_SOURCE_DIR
}
)
string
(
REPLACE
${
CMAKE_SOURCE_DIR
}
""
tgt
${
CMAKE_CURRENT_SOURCE_DIR
}
)
string
(
MAKE_C_IDENTIFIER move_header
${
tgt
}
tgt
)
string
(
MAKE_C_IDENTIFIER move_header
${
tgt
}
tgt
)
#add_custom_target(${tgt})
set_property
(
GLOBAL APPEND PROPERTY ROOT_HEADER_TARGETS
${
tgt
}
)
set_property
(
GLOBAL APPEND PROPERTY ROOT_HEADER_TARGETS
${
tgt
}
)
foreach
(
d
${
dirs
}
)
foreach
(
d
${
dirs
}
)
install
(
DIRECTORY
${
d
}
DESTINATION
${
CMAKE_INSTALL_INCLUDEDIR
}
install
(
DIRECTORY
${
d
}
DESTINATION
${
CMAKE_INSTALL_INCLUDEDIR
}
...
...
This diff is collapsed.
Click to expand it.
interpreter/CMakeLists.txt
+
4
−
0
View file @
3516c432
...
@@ -84,6 +84,10 @@ endif(cxxmodules)
...
@@ -84,6 +84,10 @@ endif(cxxmodules)
if
(
NOT DEFINED LLVM_BUILD_TYPE
)
if
(
NOT DEFINED LLVM_BUILD_TYPE
)
set
(
LLVM_BUILD_TYPE Release CACHE STRING
"Build type for LLVM (used to set CMAKE_BUILD_TYPE)"
)
set
(
LLVM_BUILD_TYPE Release CACHE STRING
"Build type for LLVM (used to set CMAKE_BUILD_TYPE)"
)
endif
()
endif
()
if
(
CMAKE_BUILD_TYPE STREQUAL
"Debug"
AND NOT LLVM_BUILD_TYPE STREQUAL
"Debug"
)
message
(
WARNING
"Selected a 'Debug' build (CMAKE_BUILD_TYPE), be aware that the embedded LLVM will still be built as 'Release'."
" Use the variable LLVM_BUILD_TYPE to control it."
)
endif
()
if
(
CMAKE_BUILD_TYPE STREQUAL
"Debug"
)
if
(
CMAKE_BUILD_TYPE STREQUAL
"Debug"
)
set
(
LLVM_ENABLE_ASSERTIONS
"YES"
)
set
(
LLVM_ENABLE_ASSERTIONS
"YES"
)
else
()
else
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment