Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,16 @@ To add Draco to your project:
# included in the NDK.
${log-lib} )

Some platforms, the linker may be stripping out the self-registering
classes FileReaderFactory uses to read inputs. You can use the following
ways to avoid this problem.

target_link_libraries(native-lib -Wl,--whole-archive draco -Wl,--no-whole-archive)

or

target_link_libraries(native-lib -Wl,-force_load draco)

vcpkg
---------------------
You can download and install Draco using the
Expand Down