Skip to content

Commit

Permalink
Added x64 binaries for MinGW and adapted the CMake file.
Browse files Browse the repository at this point in the history
  • Loading branch information
eXpl0it3r committed Feb 19, 2013
1 parent 274d316 commit 4a64201
Show file tree
Hide file tree
Showing 11 changed files with 2 additions and 1 deletion.
Binary file added extlibs/libs-mingw/x64/libfreetype.a
Binary file not shown.
Binary file added extlibs/libs-mingw/x64/libglew32.a
Binary file not shown.
Binary file added extlibs/libs-mingw/x64/libjpeg.a
Binary file not shown.
Binary file added extlibs/libs-mingw/x64/libsndfile.a
Binary file not shown.
Binary file added extlibs/libs-mingw/x64/openal32.a
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion src/SFML/CMakeLists.txt
Expand Up @@ -6,10 +6,11 @@ include(${PROJECT_SOURCE_DIR}/cmake/Macros.cmake)
if (WINDOWS)
set(CMAKE_INCLUDE_PATH ${CMAKE_INCLUDE_PATH} "${PROJECT_SOURCE_DIR}/extlibs/headers")
if(COMPILER_GCC)
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${PROJECT_SOURCE_DIR}/extlibs/libs-mingw")
if(ARCH_32BITS)
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${PROJECT_SOURCE_DIR}/extlibs/libs-mingw/x86")
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${PROJECT_SOURCE_DIR}/extlibs/bin/x86")
elseif(ARCH_64BITS)
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${PROJECT_SOURCE_DIR}/extlibs/libs-mingw/x64")
set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "${PROJECT_SOURCE_DIR}/extlibs/bin/x64")
endif()
elseif(COMPILER_MSVC)
Expand Down

0 comments on commit 4a64201

Please sign in to comment.