data/CMakeLists.txt
author Tero Marttila <terom@fixme.fi>
Thu, 15 Jan 2009 21:33:54 +0200
changeset 396 e1a24791d192
parent 0 c8174cf25e06
permissions -rw-r--r--
build scripts autodetect project version using 91d96387b359+ tip, and version is included in window title
0
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     1
# Match all files, except hidden ones (which begin with dot).
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     2
file(GLOB DATA_FILES "share/[^.]*")
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     3
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     4
if(DATA_FILES)
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     5
	install(FILES ${DATA_FILES} DESTINATION "${PROJECT_DATA_DIR}")
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     6
endif(DATA_FILES)
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     7