openalbridge/CMakeLists.txt
changeset 2216 82e7da49c26a
parent 2213 bd51bbf06033
child 2230 d6963f72d21a
equal deleted inserted replaced
2215:1d78579e06c2 2216:82e7da49c26a
    21 
    21 
    22 #visualstudio doesn't like static linking, so we're building a shared library just for it
    22 #visualstudio doesn't like static linking, so we're building a shared library just for it
    23 if(MSVC)
    23 if(MSVC)
    24 #workaround for visualstudio (wants headers in the source list)
    24 #workaround for visualstudio (wants headers in the source list)
    25 	set(openal_src
    25 	set(openal_src
    26 		openalwrap.h loaders.h endianness.h wrappers.h winstdint.h globals.h oggvorbis.h ${openal_src}
    26 		openalwrap.h loaders.h endianness.h wrappers.h globals.h oggvorbis.h ${openal_src}
    27 	)
    27 	)
    28 #deps for the shared library
    28 #deps for the shared library
    29 	link_libraries(${OPENAL_LIBRARY})
    29 	link_libraries(${OPENAL_LIBRARY})
    30 	link_libraries(${OGG_LIBRARY})
    30 	link_libraries(${OGG_LIBRARY})
    31 	link_libraries(${VORBIS_LIBRARY})
    31 	link_libraries(${VORBIS_LIBRARY})