Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
VkCV Framework
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Vulkan2021
VkCV Framework
Commits
95f8c9f3
Verified
Commit
95f8c9f3
authored
2 years ago
by
Tobias Frisch
Browse files
Options
Downloads
Patches
Plain Diff
Fixed MSVC projects to build again
Signed-off-by:
Tobias Frisch
<
tfrisch@uni-koblenz.de
>
parent
1a3e8c94
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
config/ext/Project.cmake
+3
-3
3 additions, 3 deletions
config/ext/Project.cmake
with
3 additions
and
3 deletions
config/ext/Project.cmake
+
3
−
3
View file @
95f8c9f3
...
...
@@ -9,11 +9,11 @@ macro(add_project)
# this should fix the execution path to load local files from the project (for MSVC)
if
(
MSVC
)
set_target_properties
(
${
ARGV
1
}
PROPERTIES RUNTIME_OUTPUT_DIRECTORY_DEBUG
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY
}
)
set_target_properties
(
${
ARGV
1
}
PROPERTIES RUNTIME_OUTPUT_DIRECTORY_RELEASE
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY
}
)
set_target_properties
(
${
ARGV
0
}
PROPERTIES RUNTIME_OUTPUT_DIRECTORY_DEBUG
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY
}
)
set_target_properties
(
${
ARGV
0
}
PROPERTIES RUNTIME_OUTPUT_DIRECTORY_RELEASE
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY
}
)
# in addition to setting the output directory, the working directory has to be set
# by default visual studio sets the working directory to the build directory, when using the debugger
set_target_properties
(
${
ARGV
1
}
PROPERTIES VS_DEBUGGER_WORKING_DIRECTORY
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY
}
)
set_target_properties
(
${
ARGV
0
}
PROPERTIES VS_DEBUGGER_WORKING_DIRECTORY
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY
}
)
endif
()
endmacro
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment