You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My custom project template for creating frameworks for iOS, macOS, tvOS and watchOS.
6
7
@@ -21,10 +22,10 @@ The next step is to navigate into the newly cloned repo and configure it. First
21
22
```sh
22
23
cd ProjectTemplate/scripts
23
24
24
-
./config.sh -name "MyNewFramework"
25
+
./config.sh "MyNewFramework"
25
26
```
26
27
27
-
This script first copies the `ProjectTemplate` directory to a directory using the same name that you provided for your project in the same directory where the `ProjectTemplate` directory sits. Next it runs through this copy and substitutes the various placeholders in the file names and within the files themselves with the values provided in the `env.sh` script and with the name provided when running the `config.sh` script.
28
+
This script first copies the `ProjectTemplate` directory to a directory using the same name that you provided for your project in the same directory where the `ProjectTemplate` directory sits. If need be, you can use the `--output | -o` option to specify a directory in which to create the project. Next it runs through this copy and substitutes the various placeholders in the file names and within the files themselves with the values provided in the `env.sh` script and with the name provided when running the `config.sh` script.
28
29
29
30
After the script runs, you now have an empty project pre-configured for building various configurations for all supported platforms.
0 commit comments