Skip to content
Draft
Show file tree
Hide file tree
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
8 changes: 7 additions & 1 deletion SofaGLFW/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if( UNIX AND NOT APPLE )
endif ()
endif ()

sofa_find_package(glfw3 3.4 CONFIG QUIET)
#sofa_find_package(glfw3 3.4 CONFIG QUIET)

if(TARGET glfw)
if(CMAKE_SYSTEM_NAME STREQUAL Windows)
Expand Down Expand Up @@ -45,19 +45,25 @@ set(SOFAGLFW_SOURCE_DIR src/SofaGLFW)
set(HEADER_FILES
${SOFAGLFW_SOURCE_DIR}/config.h.in
${SOFAGLFW_SOURCE_DIR}/init.h
${SOFAGLFW_SOURCE_DIR}/CaptureSnapshotDrawTool.h
${SOFAGLFW_SOURCE_DIR}/SofaGLFWWindow.h
${SOFAGLFW_SOURCE_DIR}/SofaGLFWBaseGUI.h
${SOFAGLFW_SOURCE_DIR}/BaseGUIEngine.h
${SOFAGLFW_SOURCE_DIR}/NullGUIEngine.h
${SOFAGLFW_SOURCE_DIR}/SimulationLoop.h
${SOFAGLFW_SOURCE_DIR}/SofaGLFWMouseManager.h
${SOFAGLFW_SOURCE_DIR}/SceneSnapshot.h
)

set(SOURCE_FILES
${SOFAGLFW_SOURCE_DIR}/initSofaGLFW.cpp
${SOFAGLFW_SOURCE_DIR}/SimulationLoop.cpp
${SOFAGLFW_SOURCE_DIR}/SofaGLFWWindow.cpp
${SOFAGLFW_SOURCE_DIR}/NullGUIEngine.cpp
${SOFAGLFW_SOURCE_DIR}/SofaGLFWBaseGUI.cpp
${SOFAGLFW_SOURCE_DIR}/SofaGLFWMouseManager.cpp
${SOFAGLFW_SOURCE_DIR}/SceneSnapshot.cpp
${SOFAGLFW_SOURCE_DIR}/CaptureSnapshotDrawTool.cpp
)

if(Sofa.GUI.Common_FOUND)
Expand Down
Loading
Loading