diff options
Diffstat (limited to '')
-rw-r--r-- | cmake/examples/dynamic/CMakeLists.txt | 13 | ||||
-rw-r--r-- | cmake/examples/dynamic/bar.cpp | 7 | ||||
-rw-r--r-- | cmake/examples/dynamic/bar.hpp | 6 | ||||
-rw-r--r-- | cmake/examples/dynamic/foo.cpp | 6 |
4 files changed, 32 insertions, 0 deletions
diff --git a/cmake/examples/dynamic/CMakeLists.txt b/cmake/examples/dynamic/CMakeLists.txt new file mode 100644 index 0000000..013cde1 --- /dev/null +++ b/cmake/examples/dynamic/CMakeLists.txt @@ -0,0 +1,13 @@ +cmake_minimum_required(VERSION 3.1) + +project(example_dynamic) + +include(../../common.cmake) + +add_library(bar SHARED bar.cpp) +target_include_directories(bar PUBLIC .) + +add_executable(foo foo.cpp) +target_link_libraries(foo PRIVATE bar) + +install(TARGETS foo bar RUNTIME DESTINATION bin LIBRARY DESTINATION lib) diff --git a/cmake/examples/dynamic/bar.cpp b/cmake/examples/dynamic/bar.cpp new file mode 100644 index 0000000..37aa9b5 --- /dev/null +++ b/cmake/examples/dynamic/bar.cpp @@ -0,0 +1,7 @@ +#include "bar.hpp" + +#include <iostream> + +void bar() { + std::cout << "bar\n"; +} diff --git a/cmake/examples/dynamic/bar.hpp b/cmake/examples/dynamic/bar.hpp new file mode 100644 index 0000000..cf838ca --- /dev/null +++ b/cmake/examples/dynamic/bar.hpp @@ -0,0 +1,6 @@ +#pragma once + +#ifdef _MSC_VER +__declspec(dllexport) +#endif +void bar(); diff --git a/cmake/examples/dynamic/foo.cpp b/cmake/examples/dynamic/foo.cpp new file mode 100644 index 0000000..c6355a2 --- /dev/null +++ b/cmake/examples/dynamic/foo.cpp @@ -0,0 +1,6 @@ +#include <bar.hpp> + +int main() { + bar(); + return 0; +} |