FLTK logo

Re: [fltk.coredev] macOS make install fails when run with ExternalProject_Add()

FLTK matrix user chat room
(using Element browser app)   FLTK gitter user chat room   GitHub FLTK Project   FLTK News RSS Feed  
  FLTK Apps      FLTK Library      Forums      Links     Login 
 All Forums  |  Back to fltk.coredev  ]
 
Previous Message ]New Message | Reply ]Next Message ]

Re: macOS make install fails when run with ExternalProject_Add() Gonzalo Garramuño Aug 13, 2022  
 

On 13/8/22 10:01, Albrecht Schlosser wrote:
On 8/13/22 13:23 Gonzalo Garramuno wrote:
When running the compilation of fltk thru ExternalProject_Add() cmake will try to install fluid into the /Applications/ directory and it will fail due to lack of permissions unless run as root user.

-- Up-to-date: /Applications/fluid.app
CMake Error at fluid/cmake_install.cmake:49 (file):
   file INSTALL cannot set permissions on "/Applications/fluid.app": Operation
   not permitted.
Call Stack (most recent call first):
   cmake_install.cmake:105 (include)

OK, I understand the words, but I believe we need more context. What exactly are the steps you do when this happens? Could you please provide a full CMakeLists.txt with a demo (hello world) file that uses this technique and describe the commands you use so we (I) can test?

CMakeLists.txt
---------------------

cmake_minimum_required(VERSION 3.10)

# Use extraction timestamps
if( NOT CMAKE_VERSION LESS 3.24.0 )
  cmake_policy( SET CMP0135 NEW )
endif()

#
# Run this file by calling runme.sh - NOT cmake
#
project( Dependencies )


# use, i.e. don't skip the full RPATH for the build tree
SET(CMAKE_SKIP_BUILD_RPATH FALSE)

# when building, don't use the install RPATH already
# (but later on when installing)
SET(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)

# the RPATH to be used when installing
SET(CMAKE_INSTALL_RPATH "")


set( CMAKE_MAKEFILE_VERBOSE 1 )

# Many Build Libraries here, then we get to:

include( BuildFLTK.cmake )

BuildFLTK.cmake
------------------------


Include( ExternalProject )

ExternalProject_Add(
   FLTK
   GIT_REPOSITORY "https://github.com/fltk/fltk.git";
   GIT_PROGRESS 1
   CMAKE_ARGS
  -DCMAKE_MODULE_PATH=${CMAKE_MODULE_PATH}
  -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}
  -DCMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX}
# this is done, in case fltk looks for libraries like libcairo which was compiled previously and installed in
# INSTALL_PREFIX.
  -DCMAKE_PREFIX_PATH=${CMAKE_INSTALL_PREFIX}
  -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}
  -DCMAKE_C_FLAGS=${CMAKE_C_FLAGS}
  -DCMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS}
  -DFLTK_BUILD_EXAMPLES=OFF
  -DFLTK_BUILD_TEST=OFF
  -DOPTION_BUILD_SHARED_LIBS=0
  -DOPTION_USE_SYSTEM_ZLIB=0
  -DOPTION_USE_SYSTEM_LIBJPEG=0
  -DOPTION_USE_SYSTEM_LIBPNG=0)

I call cmake, with:

cmake .. -DCMAKE_INSTALL_PREFIX=$PWD/install

The problem is that while it works fine on Windows and Linux on macOS the INSTALL_PREFIX is not respected and fluid is dumped into Applications directly, instead of in $PWD/install/bin.

--
Gonzalo Garramuño
ggarra13@gmail.com

--
You received this message because you are subscribed to the Google Groups "fltk.coredev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to fltkcoredev+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/fltkcoredev/ddae3544-bde3-f4b8-4501-99e56da29271%40gmail.com.
Direct Link to Message ]
 
     
Previous Message ]New Message | Reply ]Next Message ]
 
 

Comments are owned by the poster. All other content is copyright 1998-2024 by Bill Spitzak and others. This project is hosted by The FLTK Team. Please report site problems to 'erco@seriss.com'.