Windows build fixes

This commit is contained in:
Jack Andersen
2015-11-10 10:02:25 -10:00
parent 8937bfc0c6
commit fca8742f99
3 changed files with 7 additions and 3 deletions

View File

@@ -7,4 +7,4 @@ add_executable(zeustest
main.cpp)
target_link_libraries(zeustest
Math GL)
Math)

View File

@@ -55,7 +55,7 @@ int main()
std::cout << " Test 1 " << ( aabb.intersects(s1) ? "succeeded" : "failed" ) << std::endl;
std::cout << " Test 2 " << ( aabb.intersects(s2) ? "succeeded" : "failed" ) << std::endl;
std::cout << " Test 3 " << ( aabb.intersects(s3) ? "succeeded" : "failed" ) << std::endl;
CLine line({-89.120926, 59.328712, 3.265882}, CUnitVector3f({-90.120926, 59.328712, 3.265882}));
CLine line({-89.120926f, 59.328712f, 3.265882f}, CUnitVector3f({-90.120926f, 59.328712f, 3.265882f}));
CColor ctest1;
ctest1.fromHSV(0, 255/255.f, .5);