Skip to content

Commit

Permalink
Merge pull request #356 from eXpl0it3r/master
Browse files Browse the repository at this point in the history
Added external libraries for MinGW x64 compilers
  • Loading branch information
LaurentGomila committed Feb 19, 2013
2 parents 274d316 + 4a64201 commit 4fbefe7
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 4fbefe7

Please sign in to comment.