mirror of https://github.com/PCSX2/pcsx2.git
cmake:
* 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:
parent
e848a92a79
commit
fffd1328f2
|
@ -9,14 +9,13 @@ if(PORTAUDIO_INCLUDE_DIR AND PORTAUDIO_LIBRARIES)
|
||||||
set(PORTAUDIO_FIND_QUIETLY TRUE)
|
set(PORTAUDIO_FIND_QUIETLY TRUE)
|
||||||
endif(PORTAUDIO_INCLUDE_DIR AND PORTAUDIO_LIBRARIES)
|
endif(PORTAUDIO_INCLUDE_DIR AND PORTAUDIO_LIBRARIES)
|
||||||
|
|
||||||
# include dir
|
# Search both portaudio.h and pa_linux_alsa.h to ensure the user gets
|
||||||
find_path(PORTAUDIO_INCLUDE_DIR portaudio.h)
|
# 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
|
# finally the library itself
|
||||||
find_library(libPortAudio NAMES portaudio)
|
find_library(libPortAudio NAMES portaudio)
|
||||||
# Seems to run OK without libportaudiocpp so do not pull additional dependency
|
# Run OK without libportaudiocpp so do not pull additional dependency
|
||||||
# find_library(libPortAudioCpp NAMES portaudiocpp)
|
|
||||||
# set(PORTAUDIO_LIBRARIES ${libPortAudio} ${libPortAudioCpp})
|
|
||||||
set(PORTAUDIO_LIBRARIES ${libPortAudio})
|
set(PORTAUDIO_LIBRARIES ${libPortAudio})
|
||||||
|
|
||||||
# handle the QUIETLY and REQUIRED arguments and set PORTAUDIO_FOUND to TRUE if
|
# handle the QUIETLY and REQUIRED arguments and set PORTAUDIO_FOUND to TRUE if
|
||||||
|
|
|
@ -68,6 +68,10 @@ set(GSdxSources
|
||||||
GSDirtyRect.cpp
|
GSDirtyRect.cpp
|
||||||
GSDrawScanline.cpp
|
GSDrawScanline.cpp
|
||||||
GSDrawScanlineCodeGenerator.cpp
|
GSDrawScanlineCodeGenerator.cpp
|
||||||
|
GSDrawScanlineCodeGenerator.x86.avx.cpp
|
||||||
|
GSDrawScanlineCodeGenerator.x64.cpp
|
||||||
|
GSDrawScanlineCodeGenerator.x86.cpp
|
||||||
|
GSDrawScanlineCodeGenerator.x64.avx.cpp
|
||||||
GSDump.cpp
|
GSDump.cpp
|
||||||
GSFunctionMap.cpp
|
GSFunctionMap.cpp
|
||||||
GSLinuxDialog.cpp
|
GSLinuxDialog.cpp
|
||||||
|
@ -79,6 +83,10 @@ set(GSdxSources
|
||||||
GSRendererSW.cpp
|
GSRendererSW.cpp
|
||||||
GSSetting.cpp
|
GSSetting.cpp
|
||||||
GSSetupPrimCodeGenerator.cpp
|
GSSetupPrimCodeGenerator.cpp
|
||||||
|
GSSetupPrimCodeGenerator.x86.avx.cpp
|
||||||
|
GSSetupPrimCodeGenerator.x64.avx.cpp
|
||||||
|
GSSetupPrimCodeGenerator.x86.cpp
|
||||||
|
GSSetupPrimCodeGenerator.x64.cpp
|
||||||
GSState.cpp
|
GSState.cpp
|
||||||
GSTables.cpp
|
GSTables.cpp
|
||||||
GSTexture.cpp
|
GSTexture.cpp
|
||||||
|
@ -90,6 +98,10 @@ set(GSdxSources
|
||||||
GSUtil.cpp
|
GSUtil.cpp
|
||||||
GSVector.cpp
|
GSVector.cpp
|
||||||
GSVertexTrace.cpp
|
GSVertexTrace.cpp
|
||||||
|
GSVertexTrace.x64.avx.cpp
|
||||||
|
GSVertexTrace.x86.cpp
|
||||||
|
GSVertexTrace.x86.avx.cpp
|
||||||
|
GSVertexTrace.x64.cpp
|
||||||
GSWnd.cpp
|
GSWnd.cpp
|
||||||
GSdx.cpp
|
GSdx.cpp
|
||||||
stdafx.cpp
|
stdafx.cpp
|
||||||
|
|
Loading…
Reference in New Issue