Restructured Test Folder
This commit is contained in:
@@ -5,10 +5,13 @@ set(CMAKE_CXX_STANDARD 26)
|
||||
|
||||
add_executable(fennec-test main.cpp
|
||||
test.h
|
||||
tests/test_vector.h
|
||||
tests/test_matrix.h
|
||||
tests/test_scalar.h
|
||||
tests/test_geometric.h
|
||||
tests/math/test_vector.h
|
||||
tests/math/test_matrix.h
|
||||
tests/math/test_scalar.h
|
||||
tests/math/test_geometric.h
|
||||
tests/test_memory.h
|
||||
tests/test_math.h
|
||||
tests/test_lang.h
|
||||
)
|
||||
|
||||
target_link_libraries(fennec-test PRIVATE
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
#include "tests/test_scalar.h"
|
||||
#include "tests/test_vector.h"
|
||||
#include "tests/test_geometric.h"
|
||||
#include "tests/test_matrix.h"
|
||||
#include "tests/math/test_matrix.h"
|
||||
|
||||
#include <fennec/memory/bits.h>
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
#include <fennec/math/geometric.h>
|
||||
#include <fennec/math/trigonometric.h>
|
||||
|
||||
#include "../test.h"
|
||||
#include "../../test.h"
|
||||
|
||||
namespace fennec
|
||||
{
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
#include <fennec/math/vector_traits.h>
|
||||
|
||||
#include "../test.h"
|
||||
#include "../../test.h"
|
||||
|
||||
namespace fennec
|
||||
{
|
||||
@@ -25,7 +25,7 @@
|
||||
#include <fennec/lang/types.h>
|
||||
#include <fennec/math/vector.h>
|
||||
|
||||
#include "../test.h"
|
||||
#include "../../test.h"
|
||||
|
||||
namespace fennec
|
||||
{
|
||||
8
test/tests/test_lang.h
Normal file
8
test/tests/test_lang.h
Normal file
@@ -0,0 +1,8 @@
|
||||
//
|
||||
// Created by medusa on 6/8/25.
|
||||
//
|
||||
|
||||
#ifndef TEST_LANG_H
|
||||
#define TEST_LANG_H
|
||||
|
||||
#endif //TEST_LANG_H
|
||||
8
test/tests/test_math.h
Normal file
8
test/tests/test_math.h
Normal file
@@ -0,0 +1,8 @@
|
||||
//
|
||||
// Created by medusa on 6/8/25.
|
||||
//
|
||||
|
||||
#ifndef TEST_MATH_H
|
||||
#define TEST_MATH_H
|
||||
|
||||
#endif //TEST_MATH_H
|
||||
8
test/tests/test_memory.h
Normal file
8
test/tests/test_memory.h
Normal file
@@ -0,0 +1,8 @@
|
||||
//
|
||||
// Created by medusa on 6/8/25.
|
||||
//
|
||||
|
||||
#ifndef TEST_MEMORY_H
|
||||
#define TEST_MEMORY_H
|
||||
|
||||
#endif //TEST_MEMORY_H
|
||||
Reference in New Issue
Block a user