mirror of
https://github.com/anope/anope.git
synced 2026-06-29 18:56:37 +02:00
f858164dee
This allows naming commands and having spaces within command names.
7 lines
325 B
CMake
7 lines
325 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 commands.example.conf example.conf modules.example.conf mysql/tables.sql)
|
|
install(FILES ${DATA}
|
|
DESTINATION data
|
|
)
|