Skip to content

Commit

Permalink
create_package: quick fix for projectGenerator vs
Browse files Browse the repository at this point in the history
  • Loading branch information
arturoc committed Apr 27, 2013
1 parent 472b684 commit 5564ad9
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions scripts/dev/create_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
platform=$1
version=$2

REPO=https://github.com/openframeworks/openFrameworks
REPO_ALIAS=upstreamhttps
BRANCH=develop
REPO=https://github.com/arturoc/openFrameworks
REPO_ALIAS=arturohttps
BRANCH=feature-elinuxProgrammableGL

This comment has been minimized.

Copy link
@LeoColomb

LeoColomb May 15, 2013

Member

I'm not sure, but is it not supposed to compile develop branch from openframeworks/openFrameworks?


PG_REPO=https://github.com/ofZach/projectGeneratorSimple.git
PG_REPO_ALIAS=originhttps
Expand Down Expand Up @@ -113,7 +113,11 @@ function deleteEclipse {


function createProjectFiles {
projectGenerator --allexamples --${pkg_platform}
if [ "${pkg_platform}"=="vs" ]; then
projectGenerator --allexamples --vs2010
else
projectGenerator --allexamples --${pkg_platform}
fi
}

function createPackage {
Expand Down

0 comments on commit 5564ad9

Please sign in to comment.