From 6cb828cb275a3f35a7d3776e6869cf7ad502d624 Mon Sep 17 00:00:00 2001 From: Denis Blank Date: Mon, 8 Jun 2015 20:31:26 +0200 Subject: [PATCH] build fix --- CMakeLists.txt | 2 +- fluent++/fluent++.cpp | 4 ++++ fluent++/{fluent.hpp => fluent++.hpp} | 4 ++++ fluent++/fluent.cpp | 2 -- test.cpp | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) create mode 100644 fluent++/fluent++.cpp rename fluent++/{fluent.hpp => fluent++.hpp} (56%) delete mode 100644 fluent++/fluent.cpp diff --git a/CMakeLists.txt b/CMakeLists.txt index 9cc0588..fa557d6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,5 +35,5 @@ set(TEST_SOURCES test.cpp) add_executable(fluent_test ${TEST_SOURCES}) target_link_libraries(fluent_test - fluent + fluent++ ) diff --git a/fluent++/fluent++.cpp b/fluent++/fluent++.cpp new file mode 100644 index 0000000..aa130e1 --- /dev/null +++ b/fluent++/fluent++.cpp @@ -0,0 +1,4 @@ + +#include "fluent++.hpp" + +void do_export() { } diff --git a/fluent++/fluent.hpp b/fluent++/fluent++.hpp similarity index 56% rename from fluent++/fluent.hpp rename to fluent++/fluent++.hpp index fbec18c..6193bfa 100644 --- a/fluent++/fluent.hpp +++ b/fluent++/fluent++.hpp @@ -2,4 +2,8 @@ #ifndef _FLUENT_HPP_ #define _FLUENT_HPP_ +#include "functional_unwrap.hpp" + +void do_export(); + #endif /// _FLUENT_HPP_ diff --git a/fluent++/fluent.cpp b/fluent++/fluent.cpp deleted file mode 100644 index 0aceb1f..0000000 --- a/fluent++/fluent.cpp +++ /dev/null @@ -1,2 +0,0 @@ - -#include "fluent.hpp" diff --git a/test.cpp b/test.cpp index d9d1e80..acc1f41 100644 --- a/test.cpp +++ b/test.cpp @@ -1,5 +1,5 @@ -#include "fluent.hpp" +#include "fluent++.hpp" int main(int argc, char** argv) {