Write Makefile
Opened this issue · 4 comments
rep-movsd commented
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
madduci commented
or perhaps CMakeLists.txt?
rep-movsd commented
Actually there is nothing to make/build, its a header-only library
A makefile would be useful to run tests I guess
rep-movsd commented
Added basic CMakeLists.txt
Juwong commented
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.