Engine is now installable
This commit is contained in:
+1
-2
@@ -7,9 +7,8 @@ add_subdirectory(Engine/)
|
||||
|
||||
target_include_directories(Seele_unit_tests PRIVATE ${ENGINE_ROOT})
|
||||
|
||||
target_link_libraries(Seele_unit_tests PRIVATE Engine)
|
||||
target_link_libraries(Seele_unit_tests PRIVATE Boost::unit_test_framework)
|
||||
target_link_libraries(Seele_unit_tests PRIVATE Vulkan::Vulkan)
|
||||
target_link_libraries(Seele_unit_tests PRIVATE nsam)
|
||||
if(UNIX)
|
||||
target_compile_definitions(Seele_unit_tests PRIVATE -DBOOST_TEST_DYN_LINK)
|
||||
endif()
|
||||
|
||||
@@ -60,7 +60,7 @@ BOOST_AUTO_TEST_CASE(remove_keeporder)
|
||||
BOOST_AUTO_TEST_CASE(find)
|
||||
{
|
||||
Array<uint8> array;
|
||||
for(uint32 i = 0; i < 100; ++i)
|
||||
for(uint8 i = 0; i < 100; ++i)
|
||||
{
|
||||
array.add(i);
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
using namespace Seele;
|
||||
using namespace Seele::Math;
|
||||
|
||||
BOOST_AUTO_TEST_SUITE(VectorParse)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user