Added tests that the interface compiles

This commit is contained in:
Sebastian Messmer 2014-11-16 00:55:50 +01:00
parent c346098a8e
commit 58c2f64fb0
7 changed files with 23 additions and 1 deletions

View File

@ -1,3 +1,3 @@
add_library(fspp_fuse Fuse.cpp)
target_link_libraries(fspp_fuse fuse fspp_impl)
target_link_libraries(fspp_fuse fuse fspp_impl boost_filesystem boost_system)

View File

@ -1 +1,3 @@
add_library(fspp_impl FilesystemImpl.cpp FuseOpenFileList.cpp IdList.cpp FuseErrnoException.cpp)
target_link_libraries(fspp_impl boost_filesystem boost_system)

View File

@ -0,0 +1,4 @@
/*
* Tests that the header can be included without needing additional header includes as dependencies.
*/
#include "fspp/fs_interface/Device.h"

View File

@ -0,0 +1,4 @@
/*
* Tests that the header can be included without needing additional header includes as dependencies.
*/
#include "fspp/fs_interface/Dir.h"

View File

@ -0,0 +1,4 @@
/*
* Tests that the header can be included without needing additional header includes as dependencies.
*/
#include "fspp/fs_interface/File.h"

View File

@ -0,0 +1,4 @@
/*
* Tests that the header can be included without needing additional header includes as dependencies.
*/
#include "fspp/fs_interface/Node.h"

View File

@ -0,0 +1,4 @@
/*
* Tests that the header can be included without needing additional header includes as dependencies.
*/
#include "fspp/fs_interface/OpenFile.h"