Move scripts to tools
This commit is contained in:
parent
ae862453bd
commit
855cf12007
8
.gitignore
vendored
8
.gitignore
vendored
@ -139,6 +139,14 @@ Thumbs.db
|
||||
/yamlupgrade.bat
|
||||
/navigenerator.bat
|
||||
|
||||
# Linux script tools
|
||||
/athena-start
|
||||
/configure
|
||||
/configure.ac
|
||||
/function.sh
|
||||
/install.sh
|
||||
/uninstall.sh
|
||||
|
||||
# dlls
|
||||
/libmysql.dll
|
||||
/pcre8.dll
|
||||
|
||||
@ -11,11 +11,30 @@ function(copy_to_source_dir FILENAMES)
|
||||
endforeach()
|
||||
endfunction()
|
||||
|
||||
set(FILES_TO_COPY
|
||||
"serv.bat"
|
||||
"logserv.bat"
|
||||
"charserv.bat"
|
||||
"mapserv.bat"
|
||||
"runserver.bat"
|
||||
if(WIN32)
|
||||
set(WIN_FILES_TO_COPY
|
||||
"charserv.bat"
|
||||
"csv2yaml.bat"
|
||||
"logserv.bat"
|
||||
"mapcache.bat"
|
||||
"mapserv.bat"
|
||||
"runserver.bat"
|
||||
"serv.bat"
|
||||
"webserv.bat"
|
||||
"yaml2sql.bat"
|
||||
"yamlupgrade.bat"
|
||||
"navigenerator.bat"
|
||||
)
|
||||
copy_to_source_dir("${WIN_FILES_TO_COPY}")
|
||||
else()
|
||||
set(LINUX_FILES_TO_COPY
|
||||
"athena-start"
|
||||
"configure"
|
||||
"configure.ac"
|
||||
"function.sh"
|
||||
"install.sh"
|
||||
"uninstall.sh"
|
||||
)
|
||||
|
||||
)
|
||||
copy_to_source_dir("${LINUX_FILES_TO_COPY}")
|
||||
endif()
|
||||
0
configure → tools/configure
vendored
0
configure → tools/configure
vendored
Loading…
x
Reference in New Issue
Block a user