-
Notifications
You must be signed in to change notification settings - Fork 36
/
test.hancho
33 lines (26 loc) · 1.05 KB
/
test.hancho
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
"""
################################################################################
# GateBoyTests
build obj/GateBoyTests.o : compile_cpp src/GateBoyTests/GateBoyTests.cpp
build bin/GateBoyTests : c_binary $
obj/GateBoyTests.o $
bin/GateBoyLib.a $
symlinks/metrolib/bin/metrolib/libaudio.a $
symlinks/metrolib/bin/metrolib/libcore.a $
symlinks/metrolib/bin/metrolib/libgameboy.a
libraries=-lSDL2
################################################################################
# MetroBoyTests
build obj/MetroBoyTests.o : compile_cpp src/MetroBoyTests/MetroBoyTests.cpp
build obj/test_codegen.o : compile_cpp src/MetroBoyTests/test_codegen.cpp
build obj/test_mooneye.o : compile_cpp src/MetroBoyTests/test_mooneye.cpp
build obj/test_screenshot.o : compile_cpp src/MetroBoyTests/test_screenshot.cpp
build bin/MetroBoyTests : c_binary $
obj/MetroBoyTests.o $
obj/test_codegen.o $
obj/test_mooneye.o $
obj/test_screenshot.o $
bin/MetroBoyLib.a $
symlinks/metrolib/bin/metrolib/libcore.a $
symlinks/metrolib/bin/metrolib/libgameboy.a
"""