Skip to content

Commit fc30372

Browse files
committed
[3PP] Add third_party/asio submodule
1 parent 81656a9 commit fc30372

File tree

4 files changed

+31
-0
lines changed

4 files changed

+31
-0
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,3 +111,6 @@
111111
[submodule "third_party/cpplint"]
112112
path = third_party/cpplint
113113
url = https://github.com/cpplint/cpplint.git
114+
[submodule "third_party/asio"]
115+
path = third_party/asio
116+
url = https://github.com/chriskohlhoff/asio.git

premake5.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,7 @@ workspace("xenia")
303303
configurations({"Checked", "Debug", "Release"})
304304

305305
include("third_party/aes_128.lua")
306+
include("third_party/asio.lua")
306307
include("third_party/capstone.lua")
307308
include("third_party/dxbc.lua")
308309
include("third_party/discord-rpc.lua")

third_party/asio

Submodule asio added at 55684d4

third_party/asio.lua

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
group("third_party")
2+
project("asio")
3+
uuid("a5f06be0-9c7d-4e8f-b2a1-3d4c5e6f7890")
4+
kind("Utility")
5+
language("C++")
6+
7+
includedirs({
8+
"asio/include",
9+
})
10+
11+
defines({
12+
"ASIO_STANDALONE",
13+
"ASIO_NO_DEPRECATED",
14+
})
15+
16+
filter("platforms:Windows")
17+
defines({
18+
"_WIN32_WINNT=0x0A00", -- Windows 10+
19+
})
20+
filter({})
21+
22+
files({
23+
"asio/asio/include/asio.hpp",
24+
})
25+
26+
warnings("Off")

0 commit comments

Comments
 (0)