From 52921a9e13484319df2d4f1153521f3f5e12b932 Mon Sep 17 00:00:00 2001 From: Vitaly Svyastyn Date: Sun, 5 Nov 2017 19:33:01 +0600 Subject: More CMake (#1016) * Generate version information before build. * Removed /EHsc from compile options. * CMake files for the rest of protocols. * CMake 64 bit build. * CMake: precompiled headers. --- protocols/Dummy/CMakeLists.txt | 4 ++++ protocols/Dummy/proto_dummy/CMakeLists.txt | 2 ++ 2 files changed, 6 insertions(+) create mode 100644 protocols/Dummy/CMakeLists.txt create mode 100644 protocols/Dummy/proto_dummy/CMakeLists.txt (limited to 'protocols/Dummy') diff --git a/protocols/Dummy/CMakeLists.txt b/protocols/Dummy/CMakeLists.txt new file mode 100644 index 0000000000..2fedfcaa24 --- /dev/null +++ b/protocols/Dummy/CMakeLists.txt @@ -0,0 +1,4 @@ +file(GLOB SOURCES "src/*.h" "src/*.cpp" "res/*.rc") +set(TARGET Dummy) +include(${CMAKE_SOURCE_DIR}/cmake/plugin.cmake) +add_subdirectory(proto_dummy) \ No newline at end of file diff --git a/protocols/Dummy/proto_dummy/CMakeLists.txt b/protocols/Dummy/proto_dummy/CMakeLists.txt new file mode 100644 index 0000000000..3396e1c992 --- /dev/null +++ b/protocols/Dummy/proto_dummy/CMakeLists.txt @@ -0,0 +1,2 @@ +set(TARGET Proto_Dummy) +include(${CMAKE_SOURCE_DIR}/cmake/icons.cmake) \ No newline at end of file -- cgit v1.2.3