CMakeLists.txt 290 B

123456789101112
  1. set (sources
  2. SampleDLL.cpp
  3. SampleDLL.h
  4. SampleDLL.rc
  5. )
  6. add_definitions (-DSAMPLEDLL_EXPORTS)
  7. add_library (SampleDLL MODULE ${sources})
  8. if (NOT MSVC)
  9. set_target_properties ("SampleDLL" PROPERTIES PREFIX "")
  10. set_target_properties ("SampleDLL" PROPERTIES SUFFIX ".dll")
  11. endif ()