mirror of
https://github.com/anope/anope.git
synced 2026-06-26 21:56:38 +02:00
e802b6dfe8
Added CPack setup to automate generation of source package for *nix and NSIS installer for Windows. Some other minor CMake fixes. Converted docs/README and docs/WIN32.txt from Unix linefeeds to DOS linefeeds so they show up right in Notepad under Windows. Added small fix for Visual Studio 2008, CMake doesn't detect the Express version correctly and it must be explicitly defined. git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1861 5417fbe8-f217-4b02-8779-1006273d7864
7 lines
265 B
CMake
7 lines
265 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)
|
|
install(FILES ${DATA}
|
|
DESTINATION data
|
|
)
|