-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Swift support #132
base: main
Are you sure you want to change the base?
Swift support #132
Conversation
Signed-off-by: paulober <[email protected]>
Signed-off-by: paulober <[email protected]>
Signed-off-by: paulober <[email protected]>
Signed-off-by: paulober <[email protected]>
Signed-off-by: paulober <[email protected]>
Signed-off-by: paulober <[email protected]>
Signed-off-by: paulober <[email protected]>
Signed-off-by: paulober <[email protected]>
752c2ec
to
8f57632
Compare
@@ -1771,7 +1811,7 @@ export class NewProjectPanel { | |||
</div> | |||
</div>` | |||
: `<h3 class="text-xl font-semibold text-gray-900 dark:text-white mb-4"> | |||
Warning: Project Import Wizard may not work for all projects, and will often require manual correction after the import | |||
Warning: Project Import Wizard may not work for all projects, and will often require manual correction after the import. Swift Projects aren't supported at the moment. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe just say only C/C++ projects are supported, rather than swift isn't supported, as the import wizard also doesn't support Python?
Warning: Project Import Wizard may not work for all projects, and will often require manual correction after the import. Swift Projects aren't supported at the moment. | |
Warning: Project Import Wizard may not work for all projects, and will often require manual correction after the import. Only C/C++ Projects are supported at the moment. |
const execAsync = promisify(exec); | ||
|
||
export default async function checkSwiftRequirements(): Promise<boolean> { | ||
return true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this line be removed?
Swift Support
This PR adds support for generating Swift projects.
Currently supported setups:
Setup steps are explained in the README.
TODO