mirror of
https://github.com/opnsense/src.git
synced 2026-02-23 18:00:31 -05:00
20 lines
322 B
Text
20 lines
322 B
Text
|
|
framework module DependsOnModule {
|
||
|
|
umbrella header "DependsOnModule.h"
|
||
|
|
header "other.h"
|
||
|
|
module * {
|
||
|
|
export *
|
||
|
|
}
|
||
|
|
explicit module CXX {
|
||
|
|
requires cplusplus
|
||
|
|
header "cxx_other.h"
|
||
|
|
}
|
||
|
|
|
||
|
|
explicit framework module SubFramework {
|
||
|
|
umbrella header "SubFramework.h"
|
||
|
|
|
||
|
|
module * {
|
||
|
|
export *
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|