aboutsummaryrefslogtreecommitdiff
path: root/Src/external_dependencies/openmpt-trunk/build/premake/ext-soundtouch.lua
blob: e62a232b243b53b6123787c1066a7bdc7c423b8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59

 project "soundtouch"
  uuid "F5F8F6DE-84CF-4E9D-91EA-D9B5E2AA36CD"
  language "C++"
  location ( "../../build/" .. mpt_projectpathname .. "/ext" )
  mpt_projectname = "soundtouch"
  dofile "../../build/premake/premake-defaults-DLL.lua"
  dofile "../../build/premake/premake-defaults.lua"
  targetname "openmpt-soundtouch"
  includedirs { "../../include/soundtouch/include" }
	filter {}
	filter { "action:vs*" }
		characterset "Unicode"
	filter {}
  files {
   "../../include/soundtouch/include/BPMDetect.h",
   "../../include/soundtouch/include/FIFOSampleBuffer.h",
   "../../include/soundtouch/include/FIFOSamplePipe.h",
   "../../include/soundtouch/include/SoundTouch.h",
   "../../include/soundtouch/include/STTypes.h",
  }
  files {
   "../../include/soundtouch/source/SoundTouch/AAFilter.cpp",
   "../../include/soundtouch/source/SoundTouch/BPMDetect.cpp",
   "../../include/soundtouch/source/SoundTouch/cpu_detect_x86.cpp",
   "../../include/soundtouch/source/SoundTouch/FIFOSampleBuffer.cpp",
   "../../include/soundtouch/source/SoundTouch/FIRFilter.cpp",
   "../../include/soundtouch/source/SoundTouch/InterpolateCubic.cpp",
   "../../include/soundtouch/source/SoundTouch/InterpolateLinear.cpp",
   "../../include/soundtouch/source/SoundTouch/InterpolateShannon.cpp",
   "../../include/soundtouch/source/SoundTouch/mmx_optimized.cpp",
   "../../include/soundtouch/source/SoundTouch/PeakFinder.cpp",
   "../../include/soundtouch/source/SoundTouch/RateTransposer.cpp",
   "../../include/soundtouch/source/SoundTouch/SoundTouch.cpp",
   "../../include/soundtouch/source/SoundTouch/sse_optimized.cpp",
   "../../include/soundtouch/source/SoundTouch/TDStretch.cpp",
  }
  files {
   "../../include/soundtouch/source/SoundTouch/AAFilter.h",
   "../../include/soundtouch/source/SoundTouch/cpu_detect.h",
   "../../include/soundtouch/source/SoundTouch/FIRFilter.h",
   "../../include/soundtouch/source/SoundTouch/InterpolateCubic.h",
   "../../include/soundtouch/source/SoundTouch/InterpolateLinear.h",
   "../../include/soundtouch/source/SoundTouch/InterpolateShannon.h",
   "../../include/soundtouch/source/SoundTouch/PeakFinder.h",
   "../../include/soundtouch/source/SoundTouch/RateTransposer.h",
   "../../include/soundtouch/source/SoundTouch/TDStretch.h",
  }
  files {
   "../../include/soundtouch/source/SoundTouchDLL/SoundTouchDLL.cpp",
   "../../include/soundtouch/source/SoundTouchDLL/SoundTouchDLL.h",
  }
	filter { "action:vs*" }
		buildoptions { "/wd4267" }
	filter {}
	filter { "action:vs*" }
		buildoptions { "/wd6262" } -- analyze
	filter {}
  defines { "DLL_EXPORTS" }