You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
353 B
16 lines
353 B
cmake_minimum_required(VERSION 3.6)
|
|
|
|
project(nodeprecated_test)
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
include(GenerateExportHeader)
|
|
|
|
add_library(nodeprecatedlib SHARED someclass.cpp)
|
|
|
|
generate_export_header(nodeprecatedlib @DEFINE_NO_DEPRECATED@)
|
|
|
|
add_executable(nodeprecatedconsumer main.cpp)
|
|
|
|
target_link_libraries(nodeprecatedconsumer nodeprecatedlib)
|