Make all libraries STATIC for now

For shared library to work on Windows to work, we need to add
declspec(export) and declspec(import) annotations to the symbols to
export. This fixes the problem by making all libraries static on
Windows, but we'll need to revisit and do proper symbol exports.
This commit is contained in:
Corentin Wallez
2017-05-29 11:21:33 -07:00
committed by Corentin Wallez
parent 5fbdff6888
commit 26275d0a16
6 changed files with 9 additions and 9 deletions

View File

@@ -24,7 +24,7 @@ if (APPLE)
)
endif()
add_library(utils SHARED ${UTILS_SOURCES})
add_library(utils STATIC ${UTILS_SOURCES})
target_link_libraries(utils nxt_backend nxt_wire shaderc nxtcpp nxt)
SetCXX14(utils)