Browse Source

Workaround to allow debug build with vcpkg to work correctly.

pull/157/head
Sergey Semushin 7 years ago committed by Anders Jenbo
parent
commit
8625b535eb
  1. 5
      CMakeLists.txt

5
CMakeLists.txt

@ -65,7 +65,10 @@ if(NOT CMAKE_SIZEOF_VOID_P EQUAL 4)
endif()
find_package(Threads REQUIRED)
find_package(SDL2 REQUIRED)
find_package(SDL2 CONFIG QUIET)
if (NOT SDL2_FOUND)
find_package(SDL2 REQUIRED)
endif()
find_package(SDL2_ttf REQUIRED)
find_package(SDL2_mixer REQUIRED)
find_package(sodium REQUIRED)

Loading…
Cancel
Save