From 056478abd2048f46a91a4878b8d77dd6738dc567 Mon Sep 17 00:00:00 2001 From: Ess Date: Sun, 10 Nov 2013 06:54:25 -0500 Subject: [PATCH 1/2] Create libgdx directory when fetching The libgdx fetcher assumes that ProjectRoot/libgdx exists. It does weird things if it doesn't. So, we're expressly creating it before cding to it. --- fetch-libgdx.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fetch-libgdx.sh b/fetch-libgdx.sh index 73b2ba8..2ab1308 100755 --- a/fetch-libgdx.sh +++ b/fetch-libgdx.sh @@ -8,7 +8,7 @@ message(){ echo -e "\E[0;37m" } -cd libgdx +mkdir -p libgdx && cd libgdx message "Downloading $LIBGDX_ZIP ..." From 735b602f53de08e02b8ce63c06e9005742a424e2 Mon Sep 17 00:00:00 2001 From: Ess Date: Sun, 10 Nov 2013 06:55:51 -0500 Subject: [PATCH 2/2] Updated desktop build.xml The classpath to gdx-tools was not correct, causing the build to ultimately succeed, but to runtime error when the menu is presented. This updates to the current libgdx-nightly gdx-tools location. --- desktop/build.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/build.xml b/desktop/build.xml index 8c0664c..91738f9 100644 --- a/desktop/build.xml +++ b/desktop/build.xml @@ -39,7 +39,7 @@ + classpath="${libgdx.absolute.dir}/gdx.jar:${libgdx.absolute.dir}/extensions/gdx-tools/gdx-tools.jar">