mirror of
https://github.com/OpenEmu/OpenEmuKit.git
synced 2025-11-01 11:08:14 +00:00
11 lines
420 B
Plaintext
11 lines
420 B
Plaintext
/*
|
|
This is the private module which is used to make private ObjC headers available to Swift code.
|
|
Note how all header files need to be specified with paths relative to this file.
|
|
|
|
This file lives inside a folder, and that folder is the actual module. In Xcode the SWIFT_INCLUDE_PATHS needs to include the parent directory to that folder.
|
|
*/
|
|
module OpenEmuKitPrivate {
|
|
header "OpenEmuKitPrivate.h"
|
|
export *
|
|
}
|