Skip to content
Snippets Groups Projects
Commit 3c6cf1ee authored by Yuka Takahashi's avatar Yuka Takahashi Committed by Axel Naumann
Browse files

[cxxmodule] Fix a warning in modules build

Not expose ROOT/RConfig.h to rootcling, but to add the header to
ROOT_Config pcm.
parent 1f75abe2
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,8 @@ module ROOT_Foundation_C {
module ROOT_Config {
// These headers are supposed to be only textually expanded for each TU.
module "RVersion.h" { textual header "RVersion.h" export * }
module "RConfig.h" { textual header "RConfig.h" export * }
module "RConfig.h" { header "RConfig.h" export * }
module "ROOT/RConfig.h" { textual header "ROOT/RConfig.h" export * }
module "RConfigure.h" { textual header "RConfigure.h" export * }
// FIXME: There is little benefit in keeping DllImport as a separate header.
// The majority of its uses already include Rtypes.h which includes DllImport.
......
......@@ -5,7 +5,6 @@
include_directories(res ../foundation/res)
set(BASE_HEADERS
ROOT/RConfig.h
ROOT/StringConv.hxx
ROOT/TExecutor.hxx
ROOT/TSequentialExecutor.hxx
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment