Skip to content
Snippets Groups Projects
Commit 7c4e3535 authored by Ori Almog's avatar Ori Almog
Browse files

Added test makefile

parent eecad859
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,10 @@ all: *.cpp
@cp ./libtcod/*.so .
@g++ -g *.cpp -o RogueReborn.exe -I./libtcod/include -L. -ltcod -ltcodxx -Wl,-rpath=. -Wall -std=c++11
default: all
default: all test
tests:
@make -C test
clean:
@rm -f RogueReborn.exe *.so
......
#include <string>
#include <vector>
#include <iostream>
#include "include/armor.h"
int main(){
sd::cout << "Hello" << std::endl;
}
\ No newline at end of file
all: *.cpp
@echo "I'm compiling tests"
default: all
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment