Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
aiekick committed Nov 25, 2023
1 parent 80754af commit c38ea5f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/Linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: ImGuiFileDialog
path: build/ImGuiFileDialog
name: ImGuiFileDialog_App_Unix_Std_FS
path: build/ImGuiFileDialog_App_Unix

App_Linux_Std_FS:
runs-on: ubuntu-latest
Expand All @@ -52,8 +52,8 @@ jobs:
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: ImGuiFileDialog
path: build/ImGuiFileDialog
name: ImGuiFileDialog_App_Unix_Std_FS
path: build/ImGuiFileDialog_App_Unix

App_Linux_Boost_FS:
runs-on: ubuntu-latest
Expand All @@ -74,6 +74,6 @@ jobs:
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: ImGuiFileDialog
path: build/ImGuiFileDialog
name: ImGuiFileDialog_App_Unix_Boost_FS
path: build/ImGuiFileDialog_App_Unix

6 changes: 3 additions & 3 deletions .github/workflows/Osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: ImGuiFileDialog_App_Macos.app
name: ImGuiFileDialog_App_Macos_Dirent_FS.app
path: build/ImGuiFileDialog_App_Macos.app

App_Macos_Std_FS:
Expand All @@ -52,7 +52,7 @@ jobs:
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: ImGuiFileDialog_App_Macos.app
name: ImGuiFileDialog_App_Macos_Std_FS.app
path: build/ImGuiFileDialog_App_Macos.app

App_Macos_Boost_FS:
Expand All @@ -74,5 +74,5 @@ jobs:
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: ImGuiFileDialog_App_Macos.app
name: ImGuiFileDialog_App_Macos_Boost_FS.app
path: build/ImGuiFileDialog_App_Macos.app
12 changes: 6 additions & 6 deletions .github/workflows/Win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: ImGuiFileDialog_App_WIn32
path: build\Release\ImGuiFileDialog_App_WIn32.exe
name: ImGuiFileDialog_App_Win32_Dirent_FS
path: build\Release\ImGuiFileDialog_App_Win32.exe

App_Win32_Std_FS:
runs-on: windows-latest
Expand All @@ -48,8 +48,8 @@ jobs:
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: ImGuiFileDialog_App_WIn32
path: build\Release\ImGuiFileDialog_App_WIn32.exe
name: ImGuiFileDialog_App_Win32_Std_FS
path: build\Release\ImGuiFileDialog_App_Win32.exe

App_Win32_Boost_FS:
runs-on: windows-latest
Expand All @@ -68,6 +68,6 @@ jobs:
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: ImGuiFileDialog_App_WIn32
path: build\Release\ImGuiFileDialog_App_WIn32.exe
name: ImGuiFileDialog_App_Win32_Boost_FS
path: build\Release\ImGuiFileDialog_App_Win32.exe

2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ if (APPLE)
##MACOSX_BUNDLE_ICON_FILE icon.icns
MACOSX_BUNDLE_INFO_PLIST "${CMAKE_SOURCE_DIR}/MacOSXBundleInfo.plist.in")
elseif(WIN32)
set_target_properties(${PROJECT} PROPERTIES OUTPUT_NAME "${PROJECT}_WIn32")
set_target_properties(${PROJECT} PROPERTIES OUTPUT_NAME "${PROJECT}_Win32")
elseif(UNIX)
set_target_properties(${PROJECT} PROPERTIES OUTPUT_NAME "${PROJECT}_Unix")
endif()
Expand Down

0 comments on commit c38ea5f

Please sign in to comment.