How to remove a library from your project 라이브러리를 프로젝트에서 제거하는 방법
The following describes how to remove a library from your project.
다음은 라이브러리를 프로젝트에서 삭제하는 방법을 설명한다.
1. Open the command prompt and go to your project directory.
명령 프롬프트를 열고, 프로젝트 디렉토리로 이동한다.
cd <project directory> |
2. Remove a library from the Git Submodule list by Input the following command.
다음 명령을 입력해, 라이브러리를 깃 하위 모듈 목록에서 제거한다.
Working directory 작업 디렉토리: "<project directory>"
git submodule deinit library/<library name> git rm library/<library name> |
3. Remove the library by delete the following line from the file "source/CMakeLists.txt".
파일 "source/CMakeLists.txt"에서 다음 줄을 삭제해 라이브러리를 제거한다.
... project_add_library(<library name>) ... |
4. Remove configuration of the library by deleting the following line from your application configuration file "app/....cmake".
응용 구성 파일 "app/....cmake"에서 다음 줄을 삭제해 라이브러리 구성을 제거한다.
... include(${PROJECT_LIBRARY_DIR}/<library name>/config/<config name>.cmake) ... |