diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-05-27 01:31:23 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-05-27 01:31:23 +0100 |
commit | 3406de7aaaf52cbef20b1549f2d7da0255d30f51 (patch) | |
tree | e4a8d14139847aac5c1a2785d4271a4dd44ba8cc | |
parent | 0de847bb4832c201233c87fa37867b9d89f0e8c8 (diff) | |
download | NorthstarLauncher-3406de7aaaf52cbef20b1549f2d7da0255d30f51.tar.gz NorthstarLauncher-3406de7aaaf52cbef20b1549f2d7da0255d30f51.zip |
fix up postbuild commands to use relative dir
-rw-r--r-- | NorthstarDLL/NorthstarDLL.vcxproj | 4 | ||||
-rw-r--r-- | NorthstarLauncher/NorthstarLauncher.vcxproj | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/NorthstarDLL/NorthstarDLL.vcxproj b/NorthstarDLL/NorthstarDLL.vcxproj index f17ac7ab..a48ecb16 100644 --- a/NorthstarDLL/NorthstarDLL.vcxproj +++ b/NorthstarDLL/NorthstarDLL.vcxproj @@ -78,7 +78,7 @@ </Command> </PreBuildEvent> <PostBuildEvent> - <Command>copy /Y "$(TargetPath)" "D:\origin\titanfall\Titanfall2"</Command> + <Command>copy /Y "$(TargetPath)" "$(SolutionDir)..\..\..\"</Command> </PostBuildEvent> </ItemDefinitionGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> @@ -111,7 +111,7 @@ </Command> </PreBuildEvent> <PostBuildEvent> - <Command>copy /Y "$(TargetPath)" "D:\origin\titanfall\Titanfall2"</Command> + <Command>copy /Y "$(TargetPath)" "$(SolutionDir)..\..\..\"</Command> </PostBuildEvent> </ItemDefinitionGroup> <ItemGroup> diff --git a/NorthstarLauncher/NorthstarLauncher.vcxproj b/NorthstarLauncher/NorthstarLauncher.vcxproj index 0c727918..2bb1406f 100644 --- a/NorthstarLauncher/NorthstarLauncher.vcxproj +++ b/NorthstarLauncher/NorthstarLauncher.vcxproj @@ -66,7 +66,7 @@ <StackReserveSize>8000000</StackReserveSize> </Link> <PostBuildEvent> - <Command>copy /Y "$(TargetPath)" "D:\origin\titanfall\Titanfall2"</Command> + <Command>copy /Y "$(TargetPath)" "$(SolutionDir)..\..\..\"</Command> </PostBuildEvent> </ItemDefinitionGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> @@ -89,7 +89,7 @@ <StackReserveSize>8000000</StackReserveSize> </Link> <PostBuildEvent> - <Command>copy /Y "$(TargetPath)" "D:\origin\titanfall\Titanfall2"</Command> + <Command>copy /Y "$(TargetPath)" "$(SolutionDir)..\..\..\"</Command> </PostBuildEvent> </ItemDefinitionGroup> <ItemGroup> |