summaryrefslogtreecommitdiff
path: root/protocols/IRCG
diff options
context:
space:
mode:
authorVitaly Svyastyn <protomors@gmail.com>2017-11-05 19:33:01 +0600
committerGeorge Hazan <ghazan@miranda.im>2017-11-05 16:33:01 +0300
commit52921a9e13484319df2d4f1153521f3f5e12b932 (patch)
tree5c6b99a6e59958778ab1cdfa61a0848d3211eb0a /protocols/IRCG
parentdb6f3932affcc9397c9fbed99d344388a585add5 (diff)
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.
Diffstat (limited to 'protocols/IRCG')
-rw-r--r--protocols/IRCG/CMakeLists.txt4
-rw-r--r--protocols/IRCG/proto_irc/CMakeLists.txt2
2 files changed, 6 insertions, 0 deletions
diff --git a/protocols/IRCG/CMakeLists.txt b/protocols/IRCG/CMakeLists.txt
new file mode 100644
index 0000000000..a281099459
--- /dev/null
+++ b/protocols/IRCG/CMakeLists.txt
@@ -0,0 +1,4 @@
+file(GLOB SOURCES "src/*.h" "src/*.cpp" "res/*.rc")
+set(TARGET IRC)
+include(${CMAKE_SOURCE_DIR}/cmake/plugin.cmake)
+add_subdirectory(proto_irc) \ No newline at end of file
diff --git a/protocols/IRCG/proto_irc/CMakeLists.txt b/protocols/IRCG/proto_irc/CMakeLists.txt
new file mode 100644
index 0000000000..6b91141bc8
--- /dev/null
+++ b/protocols/IRCG/proto_irc/CMakeLists.txt
@@ -0,0 +1,2 @@
+set(TARGET Proto_IRC)
+include(${CMAKE_SOURCE_DIR}/cmake/icons.cmake) \ No newline at end of file