Files
MemoryModule/example/SampleDLL/CMakeLists.txt
T
2015-08-22 01:00:13 +02:00

13 lines
290 B
CMake

set (sources
SampleDLL.cpp
SampleDLL.h
SampleDLL.rc
)
add_definitions (-DSAMPLEDLL_EXPORTS)
add_library (SampleDLL MODULE ${sources})
if (NOT MSVC)
set_target_properties ("SampleDLL" PROPERTIES PREFIX "")
set_target_properties ("SampleDLL" PROPERTIES SUFFIX ".dll")
endif ()