-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Xcode project updates, fix for ios, try catch on parser, local signin… (
#537) * Xcode project updates, fix for ios, try catch on parser, local signing for devs * test_cmdline ios
- Loading branch information
Showing
9 changed files
with
76 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
OF_NO_FMOD = 1 | ||
|
||
OF_CORE_LIBS = $(LIB_GLEW) $(LIB_PUGIXML) | ||
OF_CORE_HEADERS = $(HEADER_OF) $(HEADER_GLEW) $(HEADER_TESS2) $(HEADER_GLFW) $(HEADER_UTF8) $(HEADER_JSON) $(HEADER_GLM) $(HEADER_PUGIXML) | ||
OF_CORE_FRAMEWORKS = -framework Accelerate -framework Cocoa -framework CoreFoundation -framework CoreServices -framework CoreVideo -framework IOKit -framework OpenGL -framework QuartzCore -framework Security -framework AVFAudio -framework Foundation -framework SystemConfiguration | ||
OF_CORE_HEADERS = $(HEADER_OF) $(HEADER_FREETYPE) $(HEADER_FREETYPE2) $(HEADER_FMOD) $(HEADER_GLEW) $(HEADER_FREEIMAGE) $(HEADER_TESS2) $(HEADER_CAIRO) $(HEADER_RTAUDIO) $(HEADER_GLFW) $(HEADER_UTF8) $(HEADER_JSON) $(HEADER_GLM) $(HEADER_CURL) ${HEADER_SSL} $(HEADER_URIPARSER) $(HEADER_PUGIXML) ${HEADER_BROTLI} | ||
OF_CORE_FRAMEWORKS = -framework Accelerate -framework AGL -framework AppKit -framework ApplicationServices -framework AudioToolbox -framework AVFoundation -framework Cocoa -framework CoreAudio -framework CoreFoundation -framework CoreMedia -framework CoreServices -framework CoreVideo -framework Foundation -framework IOKit -framework OpenGL -framework QuartzCore -framework Security -framework SystemConfiguration -framework Metal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#pragma once | ||
|
||
#define PG_VERSION "55" | ||
#define PG_VERSION "56" | ||
|
||
#include "ofAddon.h" | ||
#include "pugixml.hpp" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/usr/bin/env bash | ||
|
||
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
SCRIPT_DIR="$( cd "$( dirname "${CURRENT_DIR}"/../../ )" && pwd )" | ||
PG_DIR="$( cd "$( dirname "${SCRIPT_DIR}"/../../ )" && pwd )" | ||
OF_DIR="$( cd "$( dirname "${SCRIPT_DIR}"/../../../../ )" && pwd )" | ||
CMD_DIR="${PG_DIR}/commandLine" | ||
|
||
echo "CURRENT_DIR: ${CURRENT_DIR}" | ||
echo "SCRIPT_DIR: ${SCRIPT_DIR}" | ||
echo "PG_DIR: ${PG_DIR}" | ||
echo "CMD_DIR: ${CMD_DIR}" | ||
echo "====== ${CMD_DIR}" | ||
# Compile commandline tool | ||
cd "${CMD_DIR}/bin" | ||
echo "Testing project generation ios [${CMD_DIR}/bin] oF:[${OF_DIR}]"; | ||
chmod +x projectGenerator | ||
# ./projectGenerator | ||
# ./projectGenerator -o${OF_DIR} -p"osx" -l | ||
./projectGenerator --recursive -p"ios" -o../../../../ ../../../../examples/ios | ||
errorcode=$? | ||
if [[ $errorcode -ne 0 ]]; then | ||
exit $errorcode | ||
fi |