diff options
author | geronimo <geronimo013@gmx.de> | 2012-07-29 16:00:29 +0200 |
---|---|---|
committer | geronimo <geronimo013@gmx.de> | 2012-07-29 16:00:29 +0200 |
commit | aa714b0076c06d7133c625ab22c86114d4f17e23 (patch) | |
tree | f4773543d7c0bf593c20b1a033dea8dc28dd8ad5 /tests/FilesystemTest | |
parent | 4039d18078da508ba8c628df8e2aa741cf91f266 (diff) | |
download | cmp-aa714b0076c06d7133c625ab22c86114d4f17e23.tar.gz cmp-aa714b0076c06d7133c625ab22c86114d4f17e23.tar.bz2 |
cleanup
Diffstat (limited to 'tests/FilesystemTest')
-rw-r--r-- | tests/FilesystemTest/FilesystemTest.cbp | 74 | ||||
-rw-r--r-- | tests/FilesystemTest/FilesystemTest.cscope_file_list | 1 | ||||
-rw-r--r-- | tests/FilesystemTest/FilesystemTest.depend | 1 | ||||
-rw-r--r-- | tests/FilesystemTest/FilesystemTest.layout | 9 | ||||
-rw-r--r-- | tests/FilesystemTest/src/File.cc | 11 |
5 files changed, 85 insertions, 11 deletions
diff --git a/tests/FilesystemTest/FilesystemTest.cbp b/tests/FilesystemTest/FilesystemTest.cbp new file mode 100644 index 0000000..43f5b5c --- /dev/null +++ b/tests/FilesystemTest/FilesystemTest.cbp @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<CodeBlocks_project_file> + <FileVersion major="1" minor="6" /> + <Project> + <Option title="Tests.FilesystemTest" /> + <Option pch_mode="2" /> + <Option compiler="gcc" /> + <Build> + <Target title="Debug"> + <Option output="bin/Debug/Tests" prefix_auto="1" extension_auto="1" /> + <Option object_output="obj/Debug/" /> + <Option type="1" /> + <Option compiler="gcc" /> + <Compiler> + <Add option="-g" /> + </Compiler> + </Target> + <Target title="Release"> + <Option output="bin/Release/Tests" prefix_auto="1" extension_auto="1" /> + <Option object_output="obj/Release/" /> + <Option type="1" /> + <Option compiler="gcc" /> + <Compiler> + <Add option="-O2" /> + </Compiler> + <Linker> + <Add option="-s" /> + </Linker> + </Target> + </Build> + <Compiler> + <Add option="-Wall" /> + <Add option="-fexceptions -std=gnu++0x -fomit-frame-pointer -fPIC -pthread -Wall -Wno-parentheses -Wno-switch -Wdisabled-optimization -Wpointer-arith -Wredundant-decls -Wwrite-strings -Wtype-limits -Wundef -fno-math-errno -fno-signed-zeros -fno-tree-vectorize -Werror=implicit-function-declaration" /> + <Add option="-D_REENTRANT" /> + <Add option="-D_GNU_SOURCE=1" /> + <Add option="-D__STDC_CONSTANT_MACROS" /> + <Add option="-D__STDC_FORMAT_MACROS" /> + <Add option="-D__STDC_LIMIT_MACROS" /> + <Add directory="../../libs/vdr/include" /> + <Add directory="../../libs/util/include" /> + <Add directory="../../libs/networking/include" /> + <Add directory="../../libs/IO/include" /> + <Add directory="../../libs/fsScan/include" /> + <Add directory="include" /> + </Compiler> + <Linker> + <Add library="pthread" /> + <Add library="rt" /> + <Add library="ssl" /> + <Add library="crypt" /> + <Add library="../../libs/fsScan/libfsScan.a" /> + <Add library="../../libs/networking/libnetworking.a" /> + <Add library="../../libs/IO/libIO.a" /> + <Add library="../../libs/util/libutil.a" /> + <Add library="../../libs/vdr/libvdr.a" /> + </Linker> + <Unit filename="main.cpp" /> + <Extensions> + <code_completion /> + <envvars /> + <lib_finder disable_auto="1" /> + <debugger /> + <DoxyBlocks> + <comment_style block="0" line="0" /> + <doxyfile_project /> + <doxyfile_build /> + <doxyfile_warnings /> + <doxyfile_output /> + <doxyfile_dot /> + <general /> + </DoxyBlocks> + </Extensions> + </Project> +</CodeBlocks_project_file> diff --git a/tests/FilesystemTest/FilesystemTest.cscope_file_list b/tests/FilesystemTest/FilesystemTest.cscope_file_list new file mode 100644 index 0000000..7ac8741 --- /dev/null +++ b/tests/FilesystemTest/FilesystemTest.cscope_file_list @@ -0,0 +1 @@ +"/d/linux/CMP/tests/FilesystemTest/main.cpp" diff --git a/tests/FilesystemTest/FilesystemTest.depend b/tests/FilesystemTest/FilesystemTest.depend new file mode 100644 index 0000000..c4ac310 --- /dev/null +++ b/tests/FilesystemTest/FilesystemTest.depend @@ -0,0 +1 @@ +# depslib dependency file v1.0 diff --git a/tests/FilesystemTest/FilesystemTest.layout b/tests/FilesystemTest/FilesystemTest.layout new file mode 100644 index 0000000..68e17b2 --- /dev/null +++ b/tests/FilesystemTest/FilesystemTest.layout @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<CodeBlocks_layout_file> + <ActiveTarget name="Debug" /> + <File name="main.cpp" open="0" top="0" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="133" topLine="0" /> + </Cursor> + </File> +</CodeBlocks_layout_file> diff --git a/tests/FilesystemTest/src/File.cc b/tests/FilesystemTest/src/File.cc deleted file mode 100644 index 8f3b528..0000000 --- a/tests/FilesystemTest/src/File.cc +++ /dev/null @@ -1,11 +0,0 @@ -#include "File.h" - -File::File(const char *Path) -{ - //ctor -} - -File::~File() -{ - //dtor -} |