diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index b01668d..0234823 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -19,4 +19,4 @@ jobs: uses: actions/upload-artifact@v2 with: name: build - path: ${{github.workspace}}/build \ No newline at end of file + path: ${{github.workspace}}/build/MultiRename.exe \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 730b399..131b773 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ project(MultiRename) set(CMAKE_CXX_COMPILER "g++") set(CMAKE_CXX_STANDARD 17) -add_executable(main +add_executable(MultiRename main.cpp ) @@ -12,4 +12,4 @@ set(LIBS Rpcrt4 ) -target_link_libraries(main PRIVATE ${LIBS}) +target_link_libraries(MultiRename PRIVATE ${LIBS}) diff --git a/README.md b/README.md index 3e1af2c..f9133ce 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Rename multiple files on Windows with a pattern. 1. Clone this repository 2. Make sure you have `gcc` and `cmake` installed. 3. Run `cmake -B build` and `cmake --build build` to build the project. -4. Run `build\main.exe` to rename files. +4. Run `build\MultiRename.exe` to rename files. ## Notes