Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Update build artifact path in GitHub workflow and executable name in …
Browse files Browse the repository at this point in the history
…CMakeLists.txt
  • Loading branch information
langningchen committed Dec 23, 2023
1 parent e9adddd commit de37cdb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cmake-single-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: build
path: ${{github.workspace}}/build
path: ${{github.workspace}}/build/MultiRename.exe
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ project(MultiRename)
set(CMAKE_CXX_COMPILER "g++")
set(CMAKE_CXX_STANDARD 17)

add_executable(main
add_executable(MultiRename
main.cpp
)

set(LIBS
Rpcrt4
)

target_link_libraries(main PRIVATE ${LIBS})
target_link_libraries(MultiRename PRIVATE ${LIBS})
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit de37cdb

Please sign in to comment.