fix build errors for oven on windows

This commit is contained in:
Stephen Birarda 2017-04-17 16:32:14 -07:00
parent 980de595a9
commit 19aa05281e
3 changed files with 8 additions and 0 deletions

View file

@ -9,6 +9,8 @@
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
#include <cmath> // need this include so we don't get an error looking for std::isnan
#include <fbxsdk.h>
#include <QtConcurrent>

View file

@ -3,3 +3,7 @@ set(TARGET_NAME oven)
setup_hifi_project(Widgets Gui Concurrent)
link_hifi_libraries(model-baking shared image gpu ktx)
if (WIN32)
package_libraries_for_deployment()
endif ()

View file

@ -16,6 +16,8 @@
#include <tbb/concurrent_vector.h>
#include <atomic>
#if defined(qApp)
#undef qApp
#endif