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
|
/yamlupgrade.bat
|
||||||
/navigenerator.bat
|
/navigenerator.bat
|
||||||
|
|
||||||
|
# Linux script tools
|
||||||
|
/athena-start
|
||||||
|
/configure
|
||||||
|
/configure.ac
|
||||||
|
/function.sh
|
||||||
|
/install.sh
|
||||||
|
/uninstall.sh
|
||||||
|
|
||||||
# dlls
|
# dlls
|
||||||
/libmysql.dll
|
/libmysql.dll
|
||||||
/pcre8.dll
|
/pcre8.dll
|
||||||
|
|||||||
@ -11,11 +11,30 @@ function(copy_to_source_dir FILENAMES)
|
|||||||
endforeach()
|
endforeach()
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
set(FILES_TO_COPY
|
if(WIN32)
|
||||||
"serv.bat"
|
set(WIN_FILES_TO_COPY
|
||||||
"logserv.bat"
|
|
||||||
"charserv.bat"
|
"charserv.bat"
|
||||||
|
"csv2yaml.bat"
|
||||||
|
"logserv.bat"
|
||||||
|
"mapcache.bat"
|
||||||
"mapserv.bat"
|
"mapserv.bat"
|
||||||
"runserver.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