티스토리 뷰

반응형

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

 

아래 절차 대로 진행하면 다시 정상적으로 실행 됩니다. (확인 함)

  •  프로젝트 연 상태에서 터미널 창으로 이동합니다
  • 아래 명령어를 순서대로 입력합니다.
    1. flutter clean
    2. flutter pub get
    3. flutter run
  • 다시 디버그 모드로 실행

개인적으로 학습하면서 정리한 내용입니다.

잘못된 내용이 있으면 알려주세요. 확인 후 수정 및 반영하도록 하겠습니다.

아래 전체 소스 및 실행 화면입니다.

 

오늘도 감사합니다.(__)>

 

그 외 참조 사항 정리
 

Flutter : Exception : Building with plugins requires symlink support

증상 : flutter app에 직접 작업한 flutter plugin(for windows) 포함(연결) 작업 후 빌드 시 아래와 같은 Exception 발생 함 1. flutter plugin(for windows) 프로젝트 생성 및 인터페이스 추가 2. flutter app 프로젝 생성 3.

swjs.tistory.com