see-phit
see-phit copied to clipboard
Write Makefile
Create a simple makefile
Build with <compiler> --std=c++14 main.cpp seephit.cpp
Add a rule for tests, leave that rule dummy for now
or perhaps CMakeLists.txt?
Actually there is nothing to make/build, its a header-only library
A makefile would be useful to run tests I guess
Added basic CMakeLists.txt
Create a simple makefile
Build with
<compiler> --std=c++14 main.cpp seephit.cpp
Add a rule for tests, leave that rule dummy for now
anyway, as for me, ubuntu 1804 and g++ 7.4.0, if -std=c++14, it barks so many undecleared. while -std=c++17, it works.
any need to update it? p.s. there is no seephit.cpp. as you say, only header library NOW.