Blame platform-demos/C/samples/hello-in-C/configure.ac

Packit 1470ea
# This file is processed by autoconf to create a configure script
Packit 1470ea
AC_INIT([Hello World], 1.0)
Packit 1470ea
AM_INIT_AUTOMAKE([1.10 no-define foreign dist-xz no-dist-gzip])
Packit 1470ea
AC_PROG_CC
Packit 1470ea
PKG_CHECK_MODULES(gtk, gtk+-3.0)
Packit 1470ea
AC_CONFIG_FILES([Makefile hello-world.desktop])
Packit 1470ea
Packit 1470ea
AC_OUTPUT