Adding igloo to test proj. Since it doesn't have any cpp files, I can include it directly, no need to setup a separate project.
This commit is contained in:
parent
3de19a71ef
commit
3657230298
4 changed files with 74 additions and 78 deletions
2
tests/.gitignore
vendored
2
tests/.gitignore
vendored
|
@ -8,5 +8,5 @@
|
||||||
!main.cpp
|
!main.cpp
|
||||||
!premake4.lua
|
!premake4.lua
|
||||||
!igloo/
|
!igloo/
|
||||||
!tests/
|
!tests/*.h
|
||||||
!*.h
|
!*.h
|
|
@ -1,7 +1,10 @@
|
||||||
#include "math/Vector3.h"
|
#include "math/Vector3.h"
|
||||||
|
|
||||||
// Testing Headers
|
// Testing Headers
|
||||||
#include "tests/Vector3Tests.h"
|
#include <igloo/igloo_alt.h>
|
||||||
|
|
||||||
|
#include "tests/TestsVector3.h"
|
||||||
|
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
|
|
|
@ -33,6 +33,8 @@ solution "tests"
|
||||||
|
|
||||||
includedirs {
|
includedirs {
|
||||||
"../include",
|
"../include",
|
||||||
|
".",
|
||||||
|
"igloo"
|
||||||
}
|
}
|
||||||
|
|
||||||
configuration { "x64", "debug" }
|
configuration { "x64", "debug" }
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
#ifndef __VECTOR3TESTS_H__
|
|
||||||
#define __VECTOR3TESTS_H__
|
|
||||||
|
|
||||||
class Vector3Tests // inherit from UnitTest
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif //__VECTOR3TESTS_H__
|
|
Loading…
Add table
Add a link
Reference in a new issue