From 796a6e6aac9fac7148364c32d7f678b38b91037e Mon Sep 17 00:00:00 2001 From: henrykorir Date: Sat, 25 May 2024 01:58:24 +0300 Subject: [PATCH] added chmod 705 --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 37a46fd..9a69e0c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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