Skip to content

Commit

Permalink
added chmod 705
Browse files Browse the repository at this point in the history
  • Loading branch information
henrykorir committed May 24, 2024
1 parent 4bb47b1 commit 796a6e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ cmake_minimum_required(VERSION 3.5)
project(wxMinesweeper LANGUAGES CXX)
find_package(wxWidgets)
if(NOT wxWidgets_FOUND)
if (UNIX)
#if (UNIX)
execute_process(COMMAND sudo apt-get install -y build-essential libgtk2.0-dev libgtk-3-dev)
execute_process(COMMAND chmode -R 705 /usr && ls -al)
endif (UNIX)
execute_process(COMMAND sudo chmod -R 705 /usr && ls -al)
#endif (UNIX)
include(ExternalProject)
ExternalProject_Add(
wxWidgets
Expand Down

0 comments on commit 796a6e6

Please sign in to comment.