38aa5cb437
Make building in release and debug in one cmake run on msvc with the prusaslicer_add_cmake_project function.
12 lines
216 B
CMake
12 lines
216 B
CMake
# We have to check for OpenGL to compile GLEW
|
|
find_package(OpenGL QUIET REQUIRED)
|
|
|
|
prusaslicer_add_cmake_project(
|
|
GLEW
|
|
SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}/glew
|
|
)
|
|
|
|
if (MSVC)
|
|
add_debug_dep(dep_GLEW)
|
|
endif ()
|