⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.23
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
cmake3
/
Help
/
prop_tgt
/
View File Name :
VS_NO_SOLUTION_DEPLOY.rst
VS_NO_SOLUTION_DEPLOY --------------------- Specify that the target should not be marked for deployment to a Windows CE or Windows Phone device in the generated Visual Studio solution. Be default, all EXE and shared library (DLL) targets are marked to deploy to the target device in the generated Visual Studio solution. Generator expressions are supported. There are reasons one might want to exclude a target / generated project from deployment: - The library or executable may not be necessary in the primary deploy/debug scenario, and excluding from deployment saves time in the develop/download/debug cycle. - There may be insufficient space on the target device to accommodate all of the build products. - Visual Studio 2013 requires a target device IP address be entered for each target marked for deployment. For large numbers of targets, this can be tedious. NOTE: Visual Studio *will* deploy all project dependencies of a project tagged for deployment to the IP address configured for that project even if those dependencies are not tagged for deployment. Example 1 ^^^^^^^^^ This shows setting the variable for the target foo. .. code-block:: cmake add_library(foo SHARED foo.cpp) set_property(TARGET foo PROPERTY VS_NO_SOLUTION_DEPLOY ON) Example 2 ^^^^^^^^^ This shows setting the variable for the Release configuration only. .. code-block:: cmake add_library(foo SHARED foo.cpp) set_property(TARGET foo PROPERTY VS_NO_SOLUTION_DEPLOY "$<CONFIG:Release>")