Browse Source

Merge pull request #2036 from bartbes/modernize-cmake

Modernize cmake builds
Sasha Szpakowski 1 year ago
parent
commit
f5cfaaf30d

File diff suppressed because it is too large
+ 315 - 282
CMakeLists.txt


+ 3 - 3
src/modules/audio/openal/Audio.h

@@ -50,9 +50,9 @@
 #include <OpenAL-Soft/al.h>
 #endif
 #else
-#include <AL/alc.h>
-#include <AL/al.h>
-#include <AL/alext.h>
+#include <alc.h>
+#include <al.h>
+#include <alext.h>
 #endif
 
 namespace love

+ 3 - 3
src/modules/audio/openal/Effect.h

@@ -34,9 +34,9 @@
 #include <OpenAL-Soft/alext.h>
 #endif
 #else
-#include <AL/alc.h>
-#include <AL/al.h>
-#include <AL/alext.h>
+#include <alc.h>
+#include <al.h>
+#include <alext.h>
 #endif
 
 #include <vector>

+ 3 - 3
src/modules/audio/openal/Filter.h

@@ -34,9 +34,9 @@
 #include <OpenAL-Soft/alext.h>
 #endif
 #else
-#include <AL/alc.h>
-#include <AL/al.h>
-#include <AL/alext.h>
+#include <alc.h>
+#include <al.h>
+#include <alext.h>
 #endif
 
 #include <vector>

+ 3 - 3
src/modules/audio/openal/Pool.h

@@ -46,9 +46,9 @@
 #include <OpenAL-Soft/alext.h>
 #endif
 #else
-#include <AL/alc.h>
-#include <AL/al.h>
-#include <AL/alext.h>
+#include <alc.h>
+#include <al.h>
+#include <alext.h>
 #endif
 
 namespace love

+ 2 - 2
src/modules/audio/openal/RecordingDevice.h

@@ -32,8 +32,8 @@
 #include <OpenAL-Soft/al.h>
 #endif
 #else
-#include <AL/alc.h>
-#include <AL/al.h>
+#include <alc.h>
+#include <al.h>
 #endif
 
 #include "audio/RecordingDevice.h"

+ 2 - 2
src/modules/audio/openal/Source.h

@@ -48,8 +48,8 @@
 #include <OpenAL-Soft/al.h>
 #endif
 #else
-#include <AL/alc.h>
-#include <AL/al.h>
+#include <alc.h>
+#include <al.h>
 #endif
 
 namespace love

Some files were not shown because too many files changed in this diff