fix linking glfw on linux

This commit is contained in:
williamistGitHub 2024-10-18 18:17:23 -04:00
parent 34ba20188f
commit 6c3f2ddd84

View File

@ -7,4 +7,4 @@ add_executable(scuffed_mc
# make sure the program runs in the right place from visual studio # make sure the program runs in the right place from visual studio
set_target_properties(scuffed_mc PROPERTIES VS_DEBUGGER_WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}/bin") set_target_properties(scuffed_mc PROPERTIES VS_DEBUGGER_WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}/bin")
target_link_libraries(scuffed_mc imgui glfw3) target_link_libraries(scuffed_mc imgui $<IF:$<PLATFORM_ID:Windows>,glfw3,glfw>)