diff options
| author | Opportunity <[email protected]> | 2019-11-24 18:08:20 +0800 |
|---|---|---|
| committer | Opportunity <[email protected]> | 2019-11-24 18:08:20 +0800 |
| commit | 23ae1e8af491342ef3e4f899ed0bdb5dd1a1284a (patch) | |
| tree | eb3b3f5ba300911dd091b6ff9a23eacc54f81310 | |
| parent | 46fa759eda406168dc3fbbc20c6eb2d11fb2e01d (diff) | |
emit target in xmake config
ref: https://github.com/xmake-io/xmake/issues/612#issuecomment-556022070
| -rw-r--r-- | xmake/plugins/project/vsxmake/vsproj/Xmake.targets | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/plugins/project/vsxmake/vsproj/Xmake.targets b/xmake/plugins/project/vsxmake/vsproj/Xmake.targets index 60c263d30..0519c2762 100644 --- a/xmake/plugins/project/vsxmake/vsproj/Xmake.targets +++ b/xmake/plugins/project/vsxmake/vsproj/Xmake.targets @@ -93,9 +93,9 @@ Text="$(XmakeProjectFile) not found at '$(XmakeProjectDirResolved)', please set XmakeProjectDir in vcxproj file" /> </Target> <Target Name="_XmakeConfig" DependsOnTargets="_XmakeProjCheck"> - <Message Text="$xmake config $(_XmakeCommonFlags) $(_XmakeConfigFlags) $(XmakeTarget)" Importance="High" /> + <Message Text="$xmake config $(_XmakeCommonFlags) $(_XmakeConfigFlags)" Importance="High" /> <Exec StdOutEncoding="utf-8" StdErrEncoding="utf-8" Command="$(_XmakeEnv) - $(_XmakeExecutable) config $(_XmakeCommonFlags) $(_XmakeConfigFlags) $(XmakeTarget)" EchoOff="true" /> + $(_XmakeExecutable) config $(_XmakeCommonFlags) $(_XmakeConfigFlags)" EchoOff="true" /> </Target> <Target Name="_XmakeBuild" DependsOnTargets="_XmakeProjCheck"> <Message Text="$xmake build $(_XmakeCommonFlags) $(_XmakeBuildFlags) $(XmakeTarget)" Importance="High" /> |
