make wasapi compile first

This commit is contained in:
luiscuenca 2017-10-27 11:51:19 -07:00
parent 70b37f2e8a
commit a466cf7124
2 changed files with 5 additions and 0 deletions

View file

@ -4,6 +4,10 @@ setup_hifi_project(Test)
set_target_properties(${TARGET_NAME} PROPERTIES FOLDER "Tests/manual-tests/")
setup_memory_debugger()
link_hifi_libraries(shared recording)
if (WIN32)
target_link_libraries(${TARGET_NAME} Winmm.lib)
add_dependency_external_projects(wasapi)
endif()
package_libraries_for_deployment()
# FIXME convert to unit tests

View file

@ -16,6 +16,7 @@ link_hifi_libraries(shared networking model fbx ktx image octree gl gpu gpu-gl r
if (WIN32)
target_link_libraries(${TARGET_NAME} Winmm.lib)
add_dependency_external_projects(wasapi)
endif()
package_libraries_for_deployment()