-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
43 lines (40 loc) · 1.27 KB
/
Makefile
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
# Linux build-related commands.
# ===================================================================
cmdLinux:
cmake -S . -B out/build/Linux/Debug -DCMAKE_BUILD_TYPE=Debug
cmrLinux:
cmake -S . -B out/build/Linux/Release -DCMAKE_BUILD_TYPE=Release
bdLinux:
make -C out/build/Linux/Debug
brLinux:
make -C out/build/Release/Linux
rdLinux:
out/build/Linux/Debug/Network_Simulatord
rdtLinux:
out/build/Linux/Debug/Network_Simulator
runLinux:
out/build/Linux/Release/Network_Simulatord
rrtLinux:
out/build/Linux/Release/Network_Simulator
# MacOS build-related commands.
# ===================================================================
cmdMacU:
cmake -S . -B out/build/MacOS/Debug -G 'Unix Makefiles' -DCMAKE_BUILD_TYPE=Debug
cmrMacU:
cmake -S . -B out/build/MacOS/Release -G 'Unix Makefiles' -DCMAKE_BUILD_TYPE=Release
cmdMac:
cmake -S . -B out/build/MacOS/Debug -DCMAKE_BUILD_TYPE=Debug
cmrMac:
cmake -S . -B out/build/MacOS/Release -DCMAKE_BUILD_TYPE=Release
bdMac:
make -C out/build/MacOS/Debug
brMac:
make -C out/build/MacOS/Release
rdMac:
out/build/MacOS/Debug/Network_Simulator.app/Contents/MacOS/Network_Simulator
rdtMac:
out/build/MacOS/Debug/Network_Simulator_test
runMac:
out/build/MacOS/Release/Network_Simulator
rrtMac:
out/build/MacOS/Release/Network_Simulator_test