Skip to content

Commit

Permalink
1.8 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
shonumi committed Apr 1, 2024
1 parent 2902d5b commit 3a14c05
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Expand Up @@ -18,7 +18,7 @@ SET(USER $ENV{USER} CACHE STRING "Target User")

add_executable(gbe_plus ${SRCS})
target_link_libraries(gbe_plus common gba dmg sgb nds min)
target_link_libraries(gbe_plus SDL2::SDL2)
target_link_libraries(gbe_plus SDL2::SDL2 SDL2::SDL2main)

if (LINK_CABLE)
target_link_libraries(gbe_plus SDL2_net::SDL2_net)
Expand Down
2 changes: 1 addition & 1 deletion src/common/CMakeLists.txt
Expand Up @@ -24,5 +24,5 @@ if (USE_OGL)
endif()

if (WIN32)
target_link_libraries(common GLEW::GLEW})
target_link_libraries(common GLEW::GLEW)
endif()
2 changes: 1 addition & 1 deletion src/qt/CMakeLists.txt
Expand Up @@ -47,7 +47,7 @@ set(HEADERS

add_executable(gbe_plus_qt ${SRCS} ${HEADERS})
target_link_libraries(gbe_plus_qt common gba dmg sgb nds min)
target_link_libraries(gbe_plus_qt SDL2::SDL2 OpenGL::GL ${GBE_QT_LIBS})
target_link_libraries(gbe_plus_qt SDL2::SDL2 SDL2::SDL2main OpenGL::GL ${GBE_QT_LIBS})

if (LINK_CABLE)
target_link_libraries(gbe_plus_qt SDL2_net::SDL2_net)
Expand Down

0 comments on commit 3a14c05

Please sign in to comment.