def0a54e0a
This eases porting of KDE code.
12 lines
250 B
CMake
12 lines
250 B
CMake
project(override_symbol)
|
|
|
|
add_library(somelib SHARED someclass.cpp)
|
|
|
|
set_target_properties(somelib PROPERTIES DEFINE_SYMBOL SOMELIB_MAKEDLL)
|
|
|
|
generate_export_header(somelib)
|
|
|
|
add_executable(consumer main.cpp)
|
|
|
|
target_link_libraries(consumer somelib)
|