build fix

This commit is contained in:
Denis Blank 2015-06-08 20:31:26 +02:00 committed by Naios
parent 53bcbf1550
commit 6cb828cb27
5 changed files with 10 additions and 4 deletions

View File

@ -35,5 +35,5 @@ set(TEST_SOURCES test.cpp)
add_executable(fluent_test ${TEST_SOURCES}) add_executable(fluent_test ${TEST_SOURCES})
target_link_libraries(fluent_test target_link_libraries(fluent_test
fluent fluent++
) )

4
fluent++/fluent++.cpp Normal file
View File

@ -0,0 +1,4 @@
#include "fluent++.hpp"
void do_export() { }

View File

@ -2,4 +2,8 @@
#ifndef _FLUENT_HPP_ #ifndef _FLUENT_HPP_
#define _FLUENT_HPP_ #define _FLUENT_HPP_
#include "functional_unwrap.hpp"
void do_export();
#endif /// _FLUENT_HPP_ #endif /// _FLUENT_HPP_

View File

@ -1,2 +0,0 @@
#include "fluent.hpp"

View File

@ -1,5 +1,5 @@
#include "fluent.hpp" #include "fluent++.hpp"
int main(int argc, char** argv) int main(int argc, char** argv)
{ {