--- /dev/null
+
+
+IF(WIN32)
+ FILE(GLOB DOT_EMBEDDED "dot_embedded/*.*" )
+
+ FOREACH(file ${DOT_EMBEDDED})
+ GET_FILENAME_COMPONENT(filename "${file}" NAME)
+ CONFIGURE_FILE(
+ ${file}
+ ${PROJECT_BINARY_DIR}/Debug/dot_embedded/${filename}
+ COPYONLY
+ )
+ ENDFOREACH(file ${DOT_EMBEDDED})
+
+ FOREACH(file ${DOT_EMBEDDED})
+ GET_FILENAME_COMPONENT(filename "${file}" NAME)
+ CONFIGURE_FILE(
+ ${file}
+ ${PROJECT_BINARY_DIR}/Release/dot_embedded/${filename}
+ COPYONLY
+ )
+ ENDFOREACH(file ${DOT_EMBEDDED})
+
+ FOREACH(file ${DOT_EMBEDDED})
+ GET_FILENAME_COMPONENT(filename "${file}" NAME)
+ CONFIGURE_FILE(
+ ${file}
+ ${PROJECT_BINARY_DIR}/RelWithDebInfo/dot_embedded/${filename}
+ COPYONLY
+ )
+ ENDFOREACH(file ${DOT_EMBEDDED})
+
+ INSTALL(
+ FILES ${DOT_EMBEDDED}
+ DESTINATION bin/dot_embedded
+ )
+ENDIF(WIN32)