From bc7b22f61c7f3b92ba7fadab21ce7d1bc4322c2a Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Thu, 20 Aug 2015 17:37:29 -0700 Subject: [PATCH] build: no need to generate .def file mingw generates .dll.a files which MSVC accepts in addition to .lib files. --- CMakeLists.txt | 7 ------- 1 file changed, 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c81d811..6884e50 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -183,12 +183,6 @@ configure_file ( ${CONFIGURE_OUT_FILE} ) -if(MINGW) - set(LIB_LINK_FLAGS "-Wl,--output-def,libsoundio.def") -else() - set(LIB_LINK_FLAGS " ") -endif() - add_library(libsoundio_shared SHARED ${LIBSOUNDIO_SOURCES}) set_target_properties(libsoundio_shared PROPERTIES OUTPUT_NAME soundio @@ -196,7 +190,6 @@ set_target_properties(libsoundio_shared PROPERTIES VERSION ${LIBSOUNDIO_VERSION} COMPILE_FLAGS ${LIB_CFLAGS} LINKER_LANGUAGE C - LINK_FLAGS ${LIB_LINK_FLAGS} ) include_directories( ${CMAKE_SOURCE_DIR}