Register OpenCSG in deps

This commit is contained in:
tamasmeszaros 2019-12-10 13:51:53 +01:00
parent 7ef4183d0f
commit b47869c4ac

5
deps/CMakeLists.txt vendored
View File

@ -114,6 +114,9 @@ else()
include("deps-linux.cmake") include("deps-linux.cmake")
endif() endif()
include(GLEW/GLEW.cmake)
include(OpenCSG/OpenCSG.cmake)
if (MSVC) if (MSVC)
add_custom_target(deps ALL add_custom_target(deps ALL
@ -128,6 +131,7 @@ if (MSVC)
# dep_qhull # Experimental # dep_qhull # Experimental
dep_zlib # on Windows we still need zlib dep_zlib # on Windows we still need zlib
dep_openvdb dep_openvdb
dep_OpenCSG
) )
else() else()
@ -143,6 +147,7 @@ else()
dep_nlopt dep_nlopt
dep_qhull dep_qhull
dep_openvdb dep_openvdb
dep_OpenCSG
# dep_libigl # Not working, static build has different Eigen # dep_libigl # Not working, static build has different Eigen
) )