mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
fix build errors for oven on windows
This commit is contained in:
parent
980de595a9
commit
19aa05281e
3 changed files with 8 additions and 0 deletions
|
@ -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>
|
||||
|
|
|
@ -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 ()
|
||||
|
|
|
@ -16,6 +16,8 @@
|
|||
|
||||
#include <tbb/concurrent_vector.h>
|
||||
|
||||
#include <atomic>
|
||||
|
||||
#if defined(qApp)
|
||||
#undef qApp
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue