From 478289140daae28cf7eabf54af3addf476aaad9c Mon Sep 17 00:00:00 2001 From: Yuri Kunde Schlesner Date: Sat, 23 Aug 2014 21:00:08 -0300 Subject: Replace GLEW with a glLoadGen loader. This should fix the GL loading errors that occur in some drivers due to the use of deprecated functions by GLEW. Side benefits are more accurate auto-completion (deprecated function and symbols don't exist) and faster pointer loading (less entrypoints to load). In addition it removes an external library depency, simplifying the build system a bit and eliminating one set of binary libraries for Windows. --- vsprops/app.props | 1 - 1 file changed, 1 deletion(-) (limited to 'vsprops/app.props') diff --git a/vsprops/app.props b/vsprops/app.props index aa86fd142..8a3227771 100644 --- a/vsprops/app.props +++ b/vsprops/app.props @@ -11,7 +11,6 @@ xcopy "$(SolutionDir)data" "$(EmuBinDir)" /Y /S /D -xcopy "$(ExternalsDir)glew-1.10.0\bin\Release\$(PlatformName)\glew32.dll" "$(EmuBinDir)" /Y /S /D xcopy "$(ExternalsDir)glfw-3.0.2\lib-msvc100\glfw3.dll" "$(EmuBinDir)" /Y /S /D %(Command) -- cgit v1.2.3 From 523385955c3c0af2dc2133546490f8ede0dd824f Mon Sep 17 00:00:00 2001 From: Yuri Kunde Schlesner Date: Sat, 23 Aug 2014 21:24:08 -0300 Subject: Update GLFW to 3.0.4 and include x64 lib for MSVC --- vsprops/app.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vsprops/app.props') diff --git a/vsprops/app.props b/vsprops/app.props index 8a3227771..b9c583e0f 100644 --- a/vsprops/app.props +++ b/vsprops/app.props @@ -11,7 +11,7 @@ xcopy "$(SolutionDir)data" "$(EmuBinDir)" /Y /S /D -xcopy "$(ExternalsDir)glfw-3.0.2\lib-msvc100\glfw3.dll" "$(EmuBinDir)" /Y /S /D +xcopy "$(ExternalsDir)glfw-3.0.4.bin\lib-msvc_$(PlatformToolset)-$(Platform)\glfw3.dll" "$(EmuBinDir)" /Y /S /D %(Command) -- cgit v1.2.3 From c57de3e4046c662c5179d3b55340361a046a57ff Mon Sep 17 00:00:00 2001 From: Yuri Kunde Schlesner Date: Mon, 1 Sep 2014 18:04:07 -0300 Subject: Remove hand-crafted Visual Studio solution. --- vsprops/app.props | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 vsprops/app.props (limited to 'vsprops/app.props') diff --git a/vsprops/app.props b/vsprops/app.props deleted file mode 100644 index b9c583e0f..000000000 --- a/vsprops/app.props +++ /dev/null @@ -1,26 +0,0 @@ - - - - - $(SolutionDir)bin\$(PlatformName)\ - - - $(EmuBinDir) - $(ProjectName)$(Configuration) - - - - xcopy "$(SolutionDir)data" "$(EmuBinDir)" /Y /S /D -xcopy "$(ExternalsDir)glfw-3.0.4.bin\lib-msvc_$(PlatformToolset)-$(Platform)\glfw3.dll" "$(EmuBinDir)" /Y /S /D -%(Command) - - - comctl32.lib;winmm.lib;%(AdditionalDependencies) - - - - - $(EmuBinDir) - - - \ No newline at end of file -- cgit v1.2.3