Include math_util in build

This commit is contained in:
Henrik Rydgard 2013-03-21 20:51:35 +01:00
parent b73af1e9c4
commit 4fef50245d
2 changed files with 5 additions and 4 deletions

View File

@ -29,6 +29,7 @@ LOCAL_SRC_FILES :=\
file/file_util.cpp \
file/zip_read.cpp \
json/json_writer.cpp \
math/math_util.cpp \
math/curves.cpp \
math/lin/aabb.cpp.arm \
math/lin/plane.cpp.arm \

View File

@ -17,7 +17,7 @@ unsigned int GenerateRandomNumber() {
#include <math.h>
#if defined(ARM)
#if defined(ARMV7)
void EnableFZ()
{
@ -42,12 +42,12 @@ void DisableFZ( )
void EnableFZ()
{
// TODO
}
void DisableFZ()
{
// TODO
}
#endif