summaryrefslogtreecommitdiff
path: root/cmake/icons.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/icons.cmake')
-rw-r--r--cmake/icons.cmake7
1 files changed, 7 insertions, 0 deletions
diff --git a/cmake/icons.cmake b/cmake/icons.cmake
new file mode 100644
index 0000000000..c03630ef49
--- /dev/null
+++ b/cmake/icons.cmake
@@ -0,0 +1,7 @@
+file(GLOB SOURCES "src/*.h" "res/*.rc")
+add_library(${TARGET} SHARED ${SOURCES})
+set_target_properties(${TARGET} PROPERTIES
+ LINK_FLAGS "/SUBSYSTEM:WINDOWS /NOENTRY"
+ RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/$<CONFIG>/Icons"
+)
+target_link_libraries(${TARGET} ${COMMON_LIBS}) \ No newline at end of file