diff --git a/website/docs/remotedeploydir.md b/website/docs/remotedeploydir.md new file mode 100644 index 000000000..4a82c7d39 --- /dev/null +++ b/website/docs/remotedeploydir.md @@ -0,0 +1,23 @@ +Directory on the remote machine where the project will be deployed to. + +```lua +remoteprojectdir ("path") +``` + +### Parameters ### + +`path` specifies the directory on the remote machine where the project is deployed + +### Applies To ### + +The `config` scope. + +### Availability ### + +Premake 5.0.0 alpha 14 or later, only applies to Visual Studio Linux projects. + +### Examples ### + +```lua +remoteprojectdir "$(RemoteProjectDir)" +``` diff --git a/website/docs/remoteprojectdir.md b/website/docs/remoteprojectdir.md new file mode 100644 index 000000000..35de36301 --- /dev/null +++ b/website/docs/remoteprojectdir.md @@ -0,0 +1,23 @@ +Project directory as seen by the Windows Subsystem for Linux shell. + +```lua +remoteprojectdir ("path") +``` + +### Parameters ### + +`path` specifies the directory on the remote machine that WSL sees the project in + +### Applies To ### + +The `config` scope. + +### Availability ### + +Premake 5.0.0 alpha 14 or later, only applies to Visual Studio Linux projects. + +### Examples ### + +```lua +remoteprojectdir "$(RemoteRootDir)/$(ProjectName)" +``` diff --git a/website/docs/remoteprojectreldir.md b/website/docs/remoteprojectreldir.md new file mode 100644 index 000000000..eef7f9f55 --- /dev/null +++ b/website/docs/remoteprojectreldir.md @@ -0,0 +1,23 @@ +Specifies the subdirectory on the remote machine to copy each project's source code to. + +```lua +remoteprojectreldir ("path") +``` + +### Parameters ### + +`path` specifies the directory on the remote machine where the source files of a single project will be copied to before compiling, relative to the root path + +### Applies To ### + +The `config` scope. + +### Availability ### + +Premake 5.0.0 alpha 14 or later, only applies to Visual Studio Linux projects. + +### Examples ### + +```lua +remoteprojectreldir "%{prj.name}" +``` diff --git a/website/docs/remoterootdir.md b/website/docs/remoterootdir.md new file mode 100644 index 000000000..e0da39506 --- /dev/null +++ b/website/docs/remoterootdir.md @@ -0,0 +1,23 @@ +Specifies the base directory on the remote machine to deploy the source code to before compiling. + +```lua +remoterootdir ("path") +``` + +### Parameters ### + +`path` specifies the directory on the remote machine where the source files will be copied to before compiling + +### Applies To ### + +The `config` scope. + +### Availability ### + +Premake 5.0.0 alpha 14 or later, only applies to Visual Studio Linux projects. + +### Examples ### + +```lua +remoterootdir "~/projects/%{prj.name}" +```