Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(132)

Unified Diff: configure.ac

Issue 2812018: Implement basic infrastructure for cashew daemon. (Closed) Base URL: ssh://gitrw.chromium.org/cashew.git
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Makefile.am ('k') | src/Makefile.am » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: configure.ac
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000000000000000000000000000000000000..75a51b732a742b4e6d1e9b0a94d77a37d06c6b63
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,16 @@
+# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+AC_INIT([cashew], [0.0.1], [chromium-os-dev@chromium.org])
+AM_INIT_AUTOMAKE([-Wall -Werror foreign])
+AC_PROG_CXX
+PKG_CHECK_MODULES([DBUS_CPP], [dbus-c++-1])
+# TODO(vlaviano): check for gflags
+PKG_CHECK_MODULES([GLOG], [libglog])
+AC_CONFIG_HEADERS([config.h])
+AC_CONFIG_FILES([
+ Makefile
+ src/Makefile
+])
+AC_OUTPUT
« no previous file with comments | « Makefile.am ('k') | src/Makefile.am » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698