Skip to content

Commit

Permalink
mac debug
Browse files Browse the repository at this point in the history
  • Loading branch information
John Collins committed Mar 10, 2024
1 parent dcd14ff commit dd0af26
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions bindings/java/src/main/java/manifold3d/LibraryPaths.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ public class LibraryPaths {
public static final String MANIFOLD_LIB_DIR = MANIFOLD_BUILD_DIR + "/src/manifold";
//public static final String CROSS_SECTION_LIB_DIR = MANIFOLD_BUILD_DIR + "/src/cross_section";
//public static final String QUICKHULL_LIB_DIR = MANIFOLD_BUILD_DIR + "/src/third_party";
public static final String CLIPPER_LIB_DIR = MANIFOLD_BUILD_DIR + "/_deps/clipper2-build";
public static final String MANIFOLD_LIB_DIR_WINDOWS = MANIFOLD_LIB_DIR + "/Release";
public static final String MESHIO_LIB_DIR = MANIFOLD_BUILD_DIR + "/meshIO";
public static final String MESHIO_LIB_DIR_WINDOWS = MESHIO_LIB_DIR + "/Release";
Expand Down
3 changes: 2 additions & 1 deletion bindings/java/src/main/java/manifold3d/Manifold.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@

@Platform(compiler = "cpp17", include = {"manifold.h", "meshIO.h"},
linkpath = { LibraryPaths.MANIFOLD_LIB_DIR,
LibraryPaths.MANIFOLD_LIB_DIR_WINDOWS },
LibraryPaths.MANIFOLD_LIB_DIR_WINDOWS,
LibraryPaths.CLIPPER_LIB_DIR},
link = { "manifold", "Clipper2" })
@Namespace("manifold")
public class Manifold extends Pointer {
Expand Down

0 comments on commit dd0af26

Please sign in to comment.