Skip to content

Commit

Permalink
Exclude files and added cmake permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
henrykorir committed Jun 15, 2024
1 parent 7703be1 commit 210d7b9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build/
7 changes: 7 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ cmake_minimum_required(VERSION 3.5)

project(wxMinesweeper LANGUAGES CXX)

set(CMAKE_INSTALL_DEFAULT_DIRECTORY_PERMISSIONS
OWNER_READ
OWNER_WRITE
OWNER_EXECUTE
GROUP_READ
)

include(ExternalProject)
ExternalProject_Add(wxwidgets
GIT_REPOSITORY https://github.com/wxWidgets/wxWidgets.git
Expand Down

0 comments on commit 210d7b9

Please sign in to comment.