From e07302c14046ed9874127e6ba7e5bb3e68d49e71 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C5=82=20D=C5=82ugo=C5=82=C4=99cki?= Date: Sat, 21 Mar 2015 16:04:33 +0100 Subject: [PATCH] Make entire project compiling. --- Makefile.am | 3 +-- autogen.sh | 3 +++ src/main.cpp | 10 +++++++++- 3 files changed, 13 insertions(+), 3 deletions(-) create mode 100755 autogen.sh 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; +} -- 2.30.2