mirror of
https://github.com/anope/anope.git
synced 2026-06-26 12:56:39 +02:00
7 lines
282 B
CMake
7 lines
282 B
CMake
# Only install example.chk and example.conf from this directory
|
|
# NOTE: I would've had this just find all files in the directory, but that would include files not needed (like this file)
|
|
set(DATA example.chk example.conf mysql/tables.sql)
|
|
install(FILES ${DATA}
|
|
DESTINATION data
|
|
)
|