diff --git a/CMakeLists.txt b/CMakeLists.txt index 78ebf17..608d7a2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,12 +1,12 @@ cmake_minimum_required(VERSION 3.21) -project(ImageBrowser LANGUAGES CXX) +project(SagoImageBrowser LANGUAGES CXX) set(CMAKE_CXX_STANDARD 17) set(CMAKE_AUTOMOC ON) find_package(Qt6 REQUIRED COMPONENTS Widgets) -qt_add_executable(ImageBrowser +qt_add_executable(SagoImageBrowser src/main.cpp src/mainwindow.cpp src/mainwindow.h @@ -18,4 +18,4 @@ qt_add_executable(ImageBrowser src/imageviewwidget.h ) -target_link_libraries(ImageBrowser PRIVATE Qt6::Widgets) \ No newline at end of file +target_link_libraries(SagoImageBrowser PRIVATE Qt6::Widgets) \ No newline at end of file diff --git a/README.md b/README.md index 4aa0684..a880400 100644 --- a/README.md +++ b/README.md @@ -40,12 +40,12 @@ cmake .. make ``` -The compiled executable will be at `./build/ImageBrowser` +The compiled executable will be at `./build/SagoImageBrowser` ## Running ```bash -./build/ImageBrowser +./build/SagoImageBrowser ``` ## Project Structure