How do I create dll project on windows? Permanently deleted user 创建于 2016年04月23日 17:02 As title says, I want to create project with DLL on windows, how do I do it?
Stefan,
you can simply specify a shared library as a target in CMake.lists file. Use add_library command instead of add_executable as follows:
add_library (my_Library SHARED ${my_SourceFiles})
Renat