Skip to content

Commit c04a9e7

Browse files
committed
starting new audio sys transition
1 parent 1f94547 commit c04a9e7

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[submodule "lib/kit"]
22
path = lib/kit
33
url = https://github.com/flipcoder/kit.git
4+
[submodule "lib/coal"]
5+
path = lib/coal
6+
url = http://github.com/flipcoder/coal

lib/coal

Submodule coal added at b83da56

premake4.lua

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,8 @@ solution("qor")
3535
"GLEW",
3636
"assimp",
3737
"freeimage",
38-
"openal",
39-
"alut",
40-
"ogg",
41-
"vorbis",
42-
"vorbisfile",
38+
"portaudio",
39+
"sndfile",
4340
"boost_system",
4441
"boost_filesystem",
4542
"boost_coroutine",
@@ -103,10 +100,6 @@ solution("qor")
103100
"GLEW32",
104101
"assimp",
105102
"freeimage",
106-
"alut",
107-
"libogg",
108-
"libvorbis",
109-
"libvorbisfile",
110103
"boost_system-vc140-mt-1_61",
111104
"boost_thread-vc140-mt-1_61",
112105
"boost_python-vc140-mt-1_61",
@@ -137,7 +130,7 @@ solution("qor")
137130
"c:/gtkmm/include/cairomm",
138131
"c:/gtkmm/include",
139132
"c:/local/boost_1_61_0",
140-
"c:/Program Files (x86)/OpenAL 1.1 SDK/include",
133+
--"c:/Program Files (x86)/OpenAL 1.1 SDK/include",
141134
"c:/msvc/include",
142135
}
143136
configuration { "windows", "Debug" }
@@ -146,7 +139,7 @@ solution("qor")
146139
}
147140
configuration { "windows" }
148141
libdirs {
149-
"c:/Program Files (x86)/OpenAL 1.1 SDK/libs/Win32",
142+
--"c:/Program Files (x86)/OpenAL 1.1 SDK/libs/Win32",
150143
"c:/msvc/lib32",
151144
"c:/gtkmm/lib",
152145
"c:/local/boost_1_61_0/lib32-msvc-14.0",
@@ -177,7 +170,9 @@ solution("qor")
177170
"Qor/**.h",
178171
"Qor/**.cpp",
179172
"lib/kit/**.h",
180-
"lib/kit/**.cpp"
173+
"lib/kit/**.cpp",
174+
"lib/coal/**.h",
175+
"lib/coal/**.cpp",
181176
}
182177

183178
-- Exluding Files
@@ -186,6 +181,7 @@ solution("qor")
186181
"Qor/scripts/**",
187182
"Qor/addons/**",
188183
"lib/kit/tests/**",
184+
"lib/coal/tests/**",
189185
"lib/kit/toys/**"
190186
}
191187

0 commit comments

Comments
 (0)