summaryrefslogtreecommitdiff
path: root/cmake/core.cmake
diff options
context:
space:
mode:
authorVitaly Svyastyn <protomors@gmail.com>2017-10-31 13:32:16 +0200
committerGeorge Hazan <ghazan@miranda.im>2017-10-31 14:32:16 +0300
commit4d9bf8032dd659e091394d688b6a2c59bf222240 (patch)
tree517f405276c562044b8f7f32a9475e4bac7cf94e /cmake/core.cmake
parent9437834f8f4d3abf32a8629747385d666c652084 (diff)
Initial CMake support. (#1013)
* CMake files for building application and core library. * CMake files for core plugins. Now it runs! * CMake files for some plugins.
Diffstat (limited to 'cmake/core.cmake')
-rw-r--r--cmake/core.cmake8
1 files changed, 8 insertions, 0 deletions
diff --git a/cmake/core.cmake b/cmake/core.cmake
new file mode 100644
index 0000000000..7c8677d4e1
--- /dev/null
+++ b/cmake/core.cmake
@@ -0,0 +1,8 @@
+include_directories(.)
+file(GLOB SOURCES "src/*.h" "src/*.cpp" "res/*.rc")
+add_library(${TARGET} SHARED ${SOURCES})
+set_target_properties(${TARGET} PROPERTIES
+ LINK_FLAGS "/SUBSYSTEM:WINDOWS"
+ RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/$<CONFIG>/Core"
+)
+target_link_libraries(${TARGET} ${COMMON_LIBS}) \ No newline at end of file