* add new cpp files for GSdx
* Ensure V2 API include files of portaudio


git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4385 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
gregory.hainaut@gmail.com 2011-03-02 18:18:26 +00:00
parent e848a92a79
commit fffd1328f2
2 changed files with 16 additions and 5 deletions

View File

@ -9,14 +9,13 @@ if(PORTAUDIO_INCLUDE_DIR AND PORTAUDIO_LIBRARIES)
set(PORTAUDIO_FIND_QUIETLY TRUE)
endif(PORTAUDIO_INCLUDE_DIR AND PORTAUDIO_LIBRARIES)
# include dir
find_path(PORTAUDIO_INCLUDE_DIR portaudio.h)
# Search both portaudio.h and pa_linux_alsa.h to ensure the user gets
# the include of the V2 API (V1 have only portaudio.h)
find_path(PORTAUDIO_INCLUDE_DIR NAMES portaudio.h pa_linux_alsa.h)
# finally the library itself
find_library(libPortAudio NAMES portaudio)
# Seems to run OK without libportaudiocpp so do not pull additional dependency
# find_library(libPortAudioCpp NAMES portaudiocpp)
# set(PORTAUDIO_LIBRARIES ${libPortAudio} ${libPortAudioCpp})
# Run OK without libportaudiocpp so do not pull additional dependency
set(PORTAUDIO_LIBRARIES ${libPortAudio})
# handle the QUIETLY and REQUIRED arguments and set PORTAUDIO_FOUND to TRUE if

View File

@ -68,6 +68,10 @@ set(GSdxSources
GSDirtyRect.cpp
GSDrawScanline.cpp
GSDrawScanlineCodeGenerator.cpp
GSDrawScanlineCodeGenerator.x86.avx.cpp
GSDrawScanlineCodeGenerator.x64.cpp
GSDrawScanlineCodeGenerator.x86.cpp
GSDrawScanlineCodeGenerator.x64.avx.cpp
GSDump.cpp
GSFunctionMap.cpp
GSLinuxDialog.cpp
@ -79,6 +83,10 @@ set(GSdxSources
GSRendererSW.cpp
GSSetting.cpp
GSSetupPrimCodeGenerator.cpp
GSSetupPrimCodeGenerator.x86.avx.cpp
GSSetupPrimCodeGenerator.x64.avx.cpp
GSSetupPrimCodeGenerator.x86.cpp
GSSetupPrimCodeGenerator.x64.cpp
GSState.cpp
GSTables.cpp
GSTexture.cpp
@ -90,6 +98,10 @@ set(GSdxSources
GSUtil.cpp
GSVector.cpp
GSVertexTrace.cpp
GSVertexTrace.x64.avx.cpp
GSVertexTrace.x86.cpp
GSVertexTrace.x86.avx.cpp
GSVertexTrace.x64.cpp
GSWnd.cpp
GSdx.cpp
stdafx.cpp