From: Rafał Długołęcki Date: Sat, 21 Mar 2015 15:04:33 +0000 (+0100) Subject: Make entire project compiling. X-Git-Url: https://git.dlugolecki.net.pl/?a=commitdiff_plain;h=e07302c14046ed9874127e6ba7e5bb3e68d49e71;p=genetic.git Make entire project compiling. --- diff --git a/Makefile.am b/Makefile.am index 2d61fca..45fb872 100644 --- a/Makefile.am +++ b/Makefile.am @@ -31,9 +31,8 @@ bin_genetic_SOURCES = \ bin_genetic_CPPFLAGS = \ $(bin_genetic_CFLAGS) \ - -Wall -pedantic -Wextra \ - @GEDCOM_CFLAGS@ \ -I$(top_srcdir)/src \ + -Wall -pedantic -Wextra \ -Wl,--export-dynamic bin_genetic_LDADD = \ diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..fcd4df5 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,3 @@ +#! /bin/sh + +autoreconf --force --install diff --git a/src/main.cpp b/src/main.cpp index 8d1c8b6..c2bbf58 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1 +1,9 @@ - +#include + +using namespace std; + +int main() { + cout << "Hello World" << endl; + + return 0; +}