Skip to content

Commit 72eb8ea

Browse files
committed
Adjust folder structure
1 parent e83e885 commit 72eb8ea

5 files changed

Lines changed: 21 additions & 8 deletions

File tree

.gitignore

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,9 @@ iOSInjectionProject/
125125
https://www.toptal.com/developers/gitignore/api/xcode,macos,swift,swiftpackagemanager
126126

127127
Secrets.xcconfig
128-
Python.xcframework
129-
python-stdlib
130-
site-packages/*
131-
!site-packages/requirements.txt
132-
!site-packages/install.sh
128+
Python/Python.xcframework
129+
Python/python-stdlib
130+
Python/site-packages/*
131+
!Python/site-packages/requirements.txt
132+
!Python/site-packages/install.sh
133133

Copilot for Xcode.xcodeproj/project.pbxproj

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -264,9 +264,7 @@
264264
C81458922939EFDC00135263 /* EditorExtension */,
265265
C8216B71298036EC00AD38C7 /* Helper */,
266266
C861E60F2994F6070056CB02 /* ExtensionService */,
267-
C8A3AE512A2883430046E809 /* Python.xcframework */,
268-
C8A3B1762A288FA90046E809 /* python-stdlib */,
269-
C8A3AE5A2A288AF90046E809 /* site-packages */,
267+
C81BBF5A2A2CA0B8000B4F61 /* Python */,
270268
C814588D2939EFDC00135263 /* Frameworks */,
271269
C8189B172938972F00C9DCDA /* Products */,
272270
);
@@ -303,6 +301,16 @@
303301
path = "Preview Content";
304302
sourceTree = "<group>";
305303
};
304+
C81BBF5A2A2CA0B8000B4F61 /* Python */ = {
305+
isa = PBXGroup;
306+
children = (
307+
C8A3AE512A2883430046E809 /* Python.xcframework */,
308+
C8A3B1762A288FA90046E809 /* python-stdlib */,
309+
C8A3AE5A2A288AF90046E809 /* site-packages */,
310+
);
311+
path = Python;
312+
sourceTree = "<group>";
313+
};
306314
C8216B71298036EC00AD38C7 /* Helper */ = {
307315
isa = PBXGroup;
308316
children = (

Python/module.modulemap

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module Python {
2+
umbrella header "Python.h"
3+
export *
4+
link "Python"
5+
}

0 commit comments

Comments
 (0)