Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
xpenatan committed Jul 5, 2024
1 parent f88f1f6 commit 454c201
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.github.xpenatan.gdx.examples.teavm;

import com.github.xpenatan.gdx.backends.teavm.config.AssetFileHandle;
import com.github.xpenatan.gdx.backends.teavm.config.TeaBuildConfiguration;
import com.github.xpenatan.gdx.backends.teavm.config.TeaBuilder;
import com.github.xpenatan.gdx.backends.teavm.gen.SkipClass;
Expand All @@ -15,7 +14,7 @@ public class BuildFreetypeTest {

public static void main(String[] args) throws IOException {
TeaBuildConfiguration teaBuildConfiguration = new TeaBuildConfiguration();
teaBuildConfiguration.assetsPath.add(new AssetFileHandle("../desktop/assets"));
teaBuildConfiguration.assetsPath.add(new File("../desktop/assets"));
teaBuildConfiguration.webappPath = new File("build/dist").getCanonicalPath();

TeaVMTool tool = TeaBuilder.config(teaBuildConfiguration);
Expand Down

0 comments on commit 454c201

Please sign in to comment.