mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 16:06:42 +02:00
Library for compressing and decompressing 3D geometric meshes and point clouds https://google.github.io/draco/
21 lines
823 B
Diff
21 lines
823 B
Diff
Author: Holger Jaekel <holger.jaekel@gmx.de>
|
|
Summary: use gtest package
|
|
----
|
|
|
|
--- a/cmake/draco_dependencies.cmake
|
|
+++ b/cmake/draco_dependencies.cmake
|
|
@@ -107,11 +107,10 @@
|
|
endif()
|
|
|
|
list(APPEND draco_test_include_paths ${draco_include_paths}
|
|
- "${gtest_path}/include" "${gtest_path}/googlemock"
|
|
- "${gtest_path}/googletest/include" "${gtest_path}/googletest")
|
|
+ "${gtest_path}/include/gmock/" "${gtest_path}/include/gtest/" "${gtest_path}/src/gtest/")
|
|
|
|
- list(APPEND draco_gtest_all "${gtest_path}/googletest/src/gtest-all.cc")
|
|
- list(APPEND draco_gtest_main "${gtest_path}/googletest/src/gtest_main.cc")
|
|
+ list(APPEND draco_gtest_all "${gtest_path}/src/gtest/src/gtest-all.cc")
|
|
+ list(APPEND draco_gtest_main "${gtest_path}/src/gtest/src/gtest_main.cc")
|
|
endmacro()
|
|
|
|
|