added directory and check for the GUI gui
authorladanyi
Thu, 05 May 2005 15:34:43 +0000
branchgui
changeset 0137cb007b199
child 1 c69fedfbb9b3
added directory and check for the GUI
Makefile.am
src/Makefile.am
src/main.cc
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/Makefile.am	Thu May 05 15:34:43 2005 +0000
     1.3 @@ -0,0 +1,1 @@
     1.4 +SUBDIRS = src
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/src/Makefile.am	Thu May 05 15:34:43 2005 +0000
     2.3 @@ -0,0 +1,6 @@
     2.4 +AM_CPPFLAGS = -I$(top_srcdir)/src
     2.5 +LDADD = $(top_builddir)/src/lemon/libemon.la
     2.6 +
     2.7 +bin_PROGRAMS = gui
     2.8 +
     2.9 +gui_SOURCES = main.cc
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/src/main.cc	Thu May 05 15:34:43 2005 +0000
     3.3 @@ -0,0 +1,10 @@
     3.4 +#ifdef HAVE_CONFIG_H
     3.5 +#include <config.h>
     3.6 +#endif
     3.7 +
     3.8 +#include <iostream>
     3.9 +
    3.10 +int main()
    3.11 +{
    3.12 +  std::cout << "Hello World!" << std::endl;
    3.13 +}