Skip to content

Commit

Permalink
chore: remove libEGL library from QT6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
pktiuk committed Oct 27, 2024
1 parent 4a4390a commit 0d2346a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -714,13 +714,19 @@ if(WIN32)
"${CMAKE_CURRENT_BINARY_DIR}/bin/Qt${QT_VERSION_MAJOR}Concurrent.dll"
"${CMAKE_CURRENT_BINARY_DIR}/bin/Qt${QT_VERSION_MAJOR}Network.dll"
"${CMAKE_CURRENT_BINARY_DIR}/bin/Qt${QT_VERSION_MAJOR}Widgets.dll"
"${CMAKE_CURRENT_BINARY_DIR}/bin/libEGL.dll"
"${SDL2_DLL_LOCATION_DIR}/SDL2.dll"
"${GCC_DLL}/libgcc_s_seh-1.dll"
"${PTHREAD_DLL_DIR}/libwinpthread-1.dll"
"${LIBCPP_DLL_DIR}/libstdc++-6.dll"
)

if(QT_VERSION_MAJOR EQUAL 5)
list(APPEND DLL_FILES
"${CMAKE_CURRENT_BINARY_DIR}/bin/libEGL.dll"
)
endif(QT_VERSION_MAJOR EQUAL 5)


if(CHECK_FOR_UPDATES)
message("Searching for SSL DLL-s.")
find_path(LIBCRYPTO_DLL_DIR "libcrypto-1_1-x64.dll" HINTS "${SDL2_LIBRARY_DIRS}/../bin")
Expand Down

0 comments on commit 0d2346a

Please sign in to comment.