~qqworini/aesydict/online-improve

« back to all changes in this revision

Viewing changes to app/images/CMakeLists.txt

  • Committer: Joey Chan
  • Date: 2015-03-14 11:42:38 UTC
  • Revision ID: qqworini@gmail.com-20150314114238-xx0ivhxhwt7hcotc
add full cmake support

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Searches for all image files in the current directory
 
2
# to add them to the project, if you add new files in the directory
 
3
# rerun cmake to make sure they show up in the project tree
 
4
file(GLOB IMAGE_FILES *.jpg *.png *.svg)
 
5
 
 
6
# Make the files visible in qtcreator
 
7
add_custom_target(aesydict_IMAGE_FILES ALL SOURCES ${IMAGE_FILES})
 
8
 
 
9
install(FILES ${IMAGE_FILES} DESTINATION ${AESYDICT_DIR}/images)
 
10
 
 
11