Support creation of static library and build framework and dynamic library from it. Add Makefile to better support command line or script building integration. Update demos to each use one of framework, static library, and dynamic library. Refactor and rename the build scripts. Refactor and rename the Xcode Schemes. Update build and runtime documentation. Update What's New document.
20 lines
456 B
Makefile
20 lines
456 B
Makefile
XCODE_PROJ := MoltenVKPackaging.xcodeproj
|
|
|
|
.PHONY: all
|
|
all:
|
|
xcodebuild -quiet -project $(XCODE_PROJ) -scheme "MoltenVK Package" build
|
|
|
|
.PHONY: macos
|
|
macos:
|
|
xcodebuild -quiet -project $(XCODE_PROJ) -scheme "MoltenVK Package (macOS only)" build
|
|
|
|
.PHONY: ios
|
|
ios:
|
|
xcodebuild -quiet -project $(XCODE_PROJ) -scheme "MoltenVK Package (iOS only)" build
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
xcodebuild -project $(XCODE_PROJ) -scheme "MoltenVK Package" clean
|
|
rm -rf Package
|
|
|