mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
chore(build): improve include paths
This commit is contained in:
parent
3d5794ed7c
commit
118d20c49d
30 changed files with 54 additions and 55 deletions
|
|
@ -1,5 +1,5 @@
|
|||
#include "Array.hpp"
|
||||
#include "Test.hpp"
|
||||
#include "storm/Array.hpp"
|
||||
#include "test/Test.hpp"
|
||||
|
||||
TEST_CASE("TSBaseArray", "[list]") {
|
||||
SECTION("constructs correctly") {
|
||||
|
|
|
|||
|
|
@ -27,8 +27,7 @@ endif()
|
|||
|
||||
target_include_directories(StormTest
|
||||
PRIVATE
|
||||
${CMAKE_SOURCE_DIR}/storm
|
||||
${CMAKE_SOURCE_DIR}/test
|
||||
${PROJECT_SOURCE_DIR}
|
||||
)
|
||||
|
||||
install(TARGETS StormTest DESTINATION "bin")
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#include "List.hpp"
|
||||
#include "Test.hpp"
|
||||
#include "storm/List.hpp"
|
||||
#include "test/Test.hpp"
|
||||
|
||||
struct TestListNode : TSLinkedNode<TestListNode> {
|
||||
uint32_t index = 0;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#include "Memory.hpp"
|
||||
#include "Test.hpp"
|
||||
#include "storm/Memory.hpp"
|
||||
#include "test/Test.hpp"
|
||||
|
||||
TEST_CASE("SMemAlloc", "[memory]") {
|
||||
SECTION("allocates memory") {
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
#define CATCH_CONFIG_MAIN
|
||||
#include "Test.hpp"
|
||||
#include "test/Test.hpp"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
#include "catch.hpp"
|
||||
#include "test/catch.hpp"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue