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
dfde1d43
Commit
dfde1d43
authored
8 years ago
by
Pere Mato Vila
Browse files
Options
Downloads
Patches
Plain Diff
Updated release notes
parent
840f3d2e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README/ReleaseNotes/v610/index.md
+19
-0
19 additions, 0 deletions
README/ReleaseNotes/v610/index.md
with
19 additions
and
0 deletions
README/ReleaseNotes/v610/index.md
+
19
−
0
View file @
dfde1d43
...
...
@@ -126,5 +126,24 @@ The following interfaces have been removed, after deprecation in v6.08.
## Build, Configuration and Testing Infrastructure
-
Added the CMake exported ROOT libraries into the ROOT:: namespace. In this way, projects based on CMake using ROOT can avoid
conflicts in library target names. As an example, this is the way to build a project consisting of one library and one
executable using ROOT.
```
find_package(ROOT REQUIRED)
include(${ROOT_USE_FILE})
include_directories(${CMAKE_SOURCE_DIR} ${ROOT_INCLUDE_DIRS})
add_definitions(${ROOT_CXX_FLAGS})
ROOT_GENERATE_DICTIONARY(G__Event Event.h LINKDEF EventLinkDef.h)
add_library(Event SHARED Event.cxx G__Event.cxx)
target_link_libraries(Event ROOT::Hist ROOT::Tree)
add_executable(Main MainEvent.cxx)
target_link_libraries(Main Event)
```
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