Merge pull request #9 from onqtam/onqtam-patch-2

fixing build of tools for MinGW
This commit is contained in:
Joshua Brookover
2017-05-27 11:53:08 -05:00
committed by GitHub

View File

@@ -29,8 +29,8 @@ endif()
# Create the bx target
add_library( bx STATIC ${BX_SOURCES} )
# Link against psapi in Visual Studio
if( MSVC )
# Link against psapi on Windows
if( WIN32 )
target_link_libraries( bx PUBLIC psapi )
endif()