티스토리 뷰
개발/Flutter
Flutter : Exception - Unable to generate build files 예외 발생 메시지 확인될 때
부캐: 개발하는 조대리 2023. 10. 13. 17:11반응형
Exception : Unable to generate build files 메시지 확인될 때
프로젝트 경로 변경 후 디버그 모드로 실행 시 아래와같은 에러 메시지가 발생하였습니다. 뜨아~~
Building Windows application... CMake Error: The current CMakeCache.txt directory X:/dory_works/_dory/flutter_sample/systeminfo_monitor_sample/build/windows/CMakeCache.txt is different than the directory c:/dory_works/_dory/flutter_sample/systeminfo_monitor_sample/build/windows where CMakeCache.txt was created. This may result in binaries being created in the wrong place. If you are not sure, reedit the CMakeCache.txt CMake Error: The source "X:/dory_works/_dory/flutter_sample/systeminfo_monitor_sample/windows/CMakeLists.txt" does not match the source "C:/dory_works/_dory/flutter_sample/systeminfo_monitor_sample/windows/CMakeLists.txt" used to generate cache. Re-run cmake with a different source directory. Exception: Unable to generate build files |
아래 절차 대로 진행하면 다시 정상적으로 실행 됩니다. (확인 함)
- 프로젝트 연 상태에서 터미널 창으로 이동합니다
- 아래 명령어를 순서대로 입력합니다.
- flutter clean
- flutter pub get
- flutter run
- 다시 디버그 모드로 실행
개인적으로 학습하면서 정리한 내용입니다.
잘못된 내용이 있으면 알려주세요. 확인 후 수정 및 반영하도록 하겠습니다.
아래 전체 소스 및 실행 화면입니다.
오늘도 감사합니다.(__)>
그 외 참조 사항 정리
'개발 > Flutter' 카테고리의 다른 글
Flutter : Windows desktop 빌드 후 배포 시 참조 사항 (0) | 2023.10.05 |
---|---|
Flutter : Dart Timer에 대해 알아보자 (0) | 2023.05.15 |
Flutter : Hero 위젯에 대해 알아보자 (0) | 2023.05.12 |
Flutter : Stack 위젯에 대해 알아보자 (0) | 2023.05.11 |
Flutter : PercentIndicator(ProgressBar) 만들기 (0) | 2023.05.10 |