From e0cc53e8a9b28f5115a48f5b919aedda7d4f7e3f Mon Sep 17 00:00:00 2001 From: "Michael A. Jackson" Date: Sat, 1 Nov 2008 13:15:41 +0000 Subject: [PATCH] Continuing merge of CMake build system files into trunk with the encouragement of Doug Gregor [SVN r49510] --- CMakeLists.txt | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..affc40e1 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,23 @@ +#---------------------------------------------------------------------------- +# This file was automatically generated from the original CMakeLists.txt file +# Add a variable to hold the headers for the library +set (lib_headers + fusion +) + +# Add a library target to the build system +boost_library_project( + fusion + # SRCDIRS + # TESTDIRS + HEADERS ${lib_headers} + # DOCDIRS + DESCRIPTION "Library for working with tuples, including various containers, algorithms, etc." + MODULARIZED + AUTHORS "Joel de Guzman " + "Dan Marsden " + "Tobias Schwinger " + # MAINTAINERS +) + +