Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/aiekick/NoodlesPlate
Browse files Browse the repository at this point in the history
  • Loading branch information
aiekick committed Sep 24, 2023
2 parents 18763f1 + ac5414e commit 95a4100
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: checkout submodules
run : git submodule update --init --recursive
- name: Install OpenGL lib / Requirement for Glfw3
run : sudo apt-get update && sudo apt-get install libgl1-mesa-dev libx11-dev libxi-dev libxrandr-dev libxinerama-dev libxcursor-dev
run : sudo apt-get update && sudo apt-get install libgl1-mesa-dev libx11-dev libxi-dev libxrandr-dev libxinerama-dev libxcursor-dev libasound2-dev
- name: configure
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_VR=OFF -DUSE_GPU_METRIC=OFF
- name: build
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ if(MSVC)
add_definitions(-DMSVC)
add_definitions(-DNOMINMAX) ## for avoid issue regarding std::max and std::min
else ()
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wpedantic -Wdeprecated-declarations -Wunused-parameter")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wpedantic -Wdeprecated-declarations")
endif()

if (TARGET uninstall)
Expand Down
2 changes: 1 addition & 1 deletion src/Headers/CustomImGuiFileDialogConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
//#define MAX_PATH_BUFFER_SIZE 1024

// options of use std::filesystem isntead of dirent.h but need c++17
#define USE_STD_FILESYSTEM
//#define USE_STD_FILESYSTEM

#define USE_THUMBNAILS
//the thumbnail generation use the stb_image and stb_resize lib who need to define the implementation
Expand Down

0 comments on commit 95a4100

Please sign in to comment.