234 lines
7.8 KiB
XML
234 lines
7.8 KiB
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
|
<CodeBlocks_project_file>
|
|
<FileVersion major="1" minor="6" />
|
|
<Project>
|
|
<Option title="basic-geometry-test" />
|
|
<Option pch_mode="2" />
|
|
<Option compiler="gcc" />
|
|
<Build>
|
|
<Target title="Debug">
|
|
<Option output="bin/Debug/basic-geometry-test" prefix_auto="1" extension_auto="1" />
|
|
<Option object_output="obj/Debug/" />
|
|
<Option type="1" />
|
|
<Option compiler="gcc" />
|
|
<Compiler>
|
|
<Add option="-g" />
|
|
<Add directory="../basic-geometry" />
|
|
</Compiler>
|
|
<Linker>
|
|
<Add library="basic-geometry" />
|
|
<Add library="m" />
|
|
<Add directory="../basic-geometry/bin/Debug" />
|
|
</Linker>
|
|
</Target>
|
|
<Target title="Release">
|
|
<Option output="bin/Release/basic-geometry-test" prefix_auto="1" extension_auto="1" />
|
|
<Option object_output="obj/Release/" />
|
|
<Option type="1" />
|
|
<Option compiler="gcc" />
|
|
<Compiler>
|
|
<Add option="-O3" />
|
|
<Add directory="../basic-geometry" />
|
|
</Compiler>
|
|
<Linker>
|
|
<Add option="-O3" />
|
|
<Add option="-s" />
|
|
<Add library="basic-geometry" />
|
|
<Add library="m" />
|
|
<Add directory="../basic-geometry/bin/Release" />
|
|
</Linker>
|
|
</Target>
|
|
</Build>
|
|
<Compiler>
|
|
<Add option="-Wall" />
|
|
</Compiler>
|
|
<Unit filename="helpers.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="helpers.h" />
|
|
<Unit filename="main.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/complex.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/complex.h" />
|
|
<Unit filename="tests/complex/complex_copy.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/complex/complex_copy.h" />
|
|
<Unit filename="tests/complex/complex_is_unit.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/complex/complex_is_unit.h" />
|
|
<Unit filename="tests/complex/complex_is_zero.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/complex/complex_is_zero.h" />
|
|
<Unit filename="tests/complex/complex_modulus.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/complex/complex_modulus.h" />
|
|
<Unit filename="tests/complex/complex_reset.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/complex/complex_reset.h" />
|
|
<Unit filename="tests/complex/complex_set_values.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/complex/complex_set_values.h" />
|
|
<Unit filename="tests/complex/complex_swap.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/complex/complex_swap.h" />
|
|
<Unit filename="tests/quaternion.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/quaternion.h" />
|
|
<Unit filename="tests/quaternion/quaternion_copy.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/quaternion/quaternion_copy.h" />
|
|
<Unit filename="tests/quaternion/quaternion_is_unit.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/quaternion/quaternion_is_unit.h" />
|
|
<Unit filename="tests/quaternion/quaternion_is_zero.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/quaternion/quaternion_is_zero.h" />
|
|
<Unit filename="tests/quaternion/quaternion_modulus.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/quaternion/quaternion_modulus.h" />
|
|
<Unit filename="tests/quaternion/quaternion_reset.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/quaternion/quaternion_reset.h" />
|
|
<Unit filename="tests/quaternion/quaternion_set_to_identity.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/quaternion/quaternion_set_to_identity.h" />
|
|
<Unit filename="tests/quaternion/quaternion_set_values.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/quaternion/quaternion_set_values.h" />
|
|
<Unit filename="tests/quaternion/quaternion_swap.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/quaternion/quaternion_swap.h" />
|
|
<Unit filename="tests/utilities.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/utilities.h" />
|
|
<Unit filename="tests/utilities/are_close.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/utilities/are_close.h" />
|
|
<Unit filename="tests/utilities/is_unit.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/utilities/is_unit.h" />
|
|
<Unit filename="tests/utilities/is_zero.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/utilities/is_zero.h" />
|
|
<Unit filename="tests/vector2.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/vector2.h" />
|
|
<Unit filename="tests/vector2/vector2_copy.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/vector2/vector2_copy.h" />
|
|
<Unit filename="tests/vector2/vector2_is_unit.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/vector2/vector2_is_unit.h" />
|
|
<Unit filename="tests/vector2/vector2_is_zero.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/vector2/vector2_is_zero.h" />
|
|
<Unit filename="tests/vector2/vector2_modulus.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/vector2/vector2_modulus.h" />
|
|
<Unit filename="tests/vector2/vector2_reset.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/vector2/vector2_reset.h" />
|
|
<Unit filename="tests/vector2/vector2_set_values.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/vector2/vector2_set_values.h" />
|
|
<Unit filename="tests/vector2/vector2_swap.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/vector2/vector2_swap.h" />
|
|
<Unit filename="tests/vector3.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/vector3.h" />
|
|
<Unit filename="tests/vector3/vector3_copy.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/vector3/vector3_copy.h" />
|
|
<Unit filename="tests/vector3/vector3_is_unit.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/vector3/vector3_is_unit.h" />
|
|
<Unit filename="tests/vector3/vector3_is_zero.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/vector3/vector3_is_zero.h" />
|
|
<Unit filename="tests/vector3/vector3_modulus.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/vector3/vector3_modulus.h" />
|
|
<Unit filename="tests/vector3/vector3_reset.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/vector3/vector3_reset.h" />
|
|
<Unit filename="tests/vector3/vector3_set_values.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/vector3/vector3_set_values.h" />
|
|
<Unit filename="tests/vector3/vector3_swap.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/vector3/vector3_swap.h" />
|
|
<Unit filename="tests/versor.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/versor.h" />
|
|
<Unit filename="tests/versor/versor_are_close.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/versor/versor_are_close.h" />
|
|
<Unit filename="tests/versor/versor_combine.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/versor/versor_combine.h" />
|
|
<Unit filename="tests/versor/versor_copy.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/versor/versor_copy.h" />
|
|
<Unit filename="tests/versor/versor_is_identity.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/versor/versor_is_identity.h" />
|
|
<Unit filename="tests/versor/versor_reset.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/versor/versor_reset.h" />
|
|
<Unit filename="tests/versor/versor_set_values.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/versor/versor_set_values.h" />
|
|
<Unit filename="tests/versor/versor_swap.c">
|
|
<Option compilerVar="CC" />
|
|
</Unit>
|
|
<Unit filename="tests/versor/versor_swap.h" />
|
|
<Extensions />
|
|
</Project>
|
|
</CodeBlocks_project_file>
|