Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
/ tulsi-plus-plus Public archive

Tulsi++(Tulsi plus plus) - Tulsi in Steroid

License

Notifications You must be signed in to change notification settings

wendyliga/tulsi-plus-plus

Repository files navigation

Tulsi++ - Xcode Project Generator For Bazel

downloads CI Latest Release platform Twitter: @wendyliga

Tulsi++ is steroid version of Tulsi with lots of improvement on UX side.

Difference from standard Tulsi

  • OTA Update
  • Improvement to support latest Xcode
  • Distribution binary is code-signed and properly notorized by apple
  • and many more

Installing

Download latest

Download latest dmg or zip at release page

Build it yourself

Run make install. This will install Tulsi++.app inside $HOME/Applications by default. See below for supported options:

  • bazel_path: Bazel binary that Tulsi should use to build and install the app (Default is bazel)

  • install_path: The folder where to install the Tulsi app into (Default is $HOME/Applications)

  • xcode: The Xcode version Tulsi++ should be built for (Default is 12.5.1)

Example

make install xcode=13.0 install_path=/Applications

Notes

Tulsi-generated Xcode projects use Bazel to build, not Xcode. Building in Xcode will cause it to only run a script; the script invokes Bazel to build the configured Bazel target and copies the artifacts to where Xcode expects them to be. This means that many common components of an Xcode project are handled differently than you may be used to. Notable differences:

  • BUILD files are the source of truth; most changes made to your Xcode project won't affect the build.
    • Adding new sources to the Xcode project won't include them in your app; they must be added to BUILD files.
    • Changes made to your BUILD files, such as adding new library dependencies, are incorporated automatically when building your generated project. The only time you need to re-run Tulsi is if you want to add additional build targets or have new source files show up in Xcode for editing.
    • The Info.plist file is governed entirely by BUILD rules in Bazel and is not displayed in the Xcode UI.
    • Changes to compilation flags (i.e. -DHELLO) should be made in the BUILD files in order to affect the build; changes made to compilation settings in the Xcode UI will only affect indexing. You may want to regenerate your project using Tulsi after modifying compilation flags.
  • Tulsi will set some Tulsi-specific flags for bazel invocations, some of which may affect Bazel caching. In order to maximize cache re-use when building from the command line, try using the user_build.py script which is located in the generated xcodeproj at <xcodeproj>/.tulsi/Scripts/user_build.py.

Tulsi project and config settings

Tulsi projects contain a few settings which control various behaviors during project generation and builds.

  • Bazel build flags, customizable per compilation mode (dbg and opt)
  • Bazel build startup flags, also customizable per compilation mode
  • Generation platform configuration: Target platform and arch used during project generation.
    • Can change from targeting iOS sim to iOS device or from iOS to macOS. Setting this improperly shouldn't break your project although it may potentially worsen generation and build performance.
  • Generation compilation mode: Bazel compilation mode (dbg or opt, no fastbuild) used during project generation.
    • Defaults to dbg, swap to opt if you normally build Release builds in Xcode (i.e. profiling your app). Setting this improperly shouldn't break your project although it may potentially worsen generation and build performance.
  • Prioritize Swift: set this to inform Tulsi that it should use Swift-specific flags during project generation.
    • Defaults to No, swap to Yes if your project contains Swift (even in its dependencies). Setting this improperly shouldn't break your project although it may potentially worsen generation and build performance.

License

Copyright 2021 Wendy Liga. All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.