CMakePresets.json에 보면
{
"name": "linux-debug",
"displayName": "Linux Debug",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"installDir": "${sourceDir}/out/install/${presetName}",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Linux"
},
"vendor": {
"microsoft.com/VisualStudioRemoteSettings/CMake/1.0": {
"sourceDir": "$env{HOME}/.vs/$ms{projectDirName}",
"copySourcesOptions" : { "exclusionList": [ ".vs", ".git", "out", "Test22" ] }
}
}
},
이런 항목쪽이 있는데 제공되는 Vendor의 맵정보중 "copySourcesOptions" 항목의 "exclusionList"를 수정하면된다. Test22라는 경로가 추가로 제거된다.
'문제해결' 카테고리의 다른 글
Unable to locate sdkmanager.bat. Did you run Android Studio (0) | 2023.10.31 |
---|---|
Unreal 5.3.1 Platform Android is not a valid platform to build. Check that the SDK is installed properly (0) | 2023.10.29 |
SQL Server 2022연결문제 (0) | 2023.08.31 |
UE5 Launcher 내 프로젝트 (0) | 2022.07.26 |
AutomationTool/Saved\UATTempProj.proj (0) | 2022.04.16 |