Skip to content

Commit

Permalink
Removed quotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed Feb 14, 2024
1 parent efea6e1 commit 8cf5183
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cmake/Modules/BuildpyFLTK.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@ set(pyFLTK_PATCH
"${CMAKE_BINARY_DIR}/pyFLTK-prefix/src/pyFLTK/swig/")

# Environment setup for configure, building and installing
set(pyFLTK_ENV ${CMAKE_COMMAND} -E env CXXFLAGS="${pyFLTK_CXX_FLAGS}" PATH="${pyFLTK_PATH}")
set(pyFLTK_ENV ${CMAKE_COMMAND} -E env CXXFLAGS=${pyFLTK_CXX_FLAGS} )
if(WIN32)
set(pyFLTK_ENV ${pyFLTK_ENV} FLTK_HOME=${CMAKE_INSTALL_PREFIX} --)
set(pyFLTK_ENV ${pyFLTK_ENV} PATH=${pyFLTK_PATH} FLTK_HOME=${CMAKE_INSTALL_PREFIX} --)
elseif(APPLE)
set(pyFLTK_ENV ${pyFLTK_ENV} DYLD_LIBRARY_PATH="${pyFLTK_DYLD_LIBRARY_PATH}" -- )
set(pyFLTK_ENV ${pyFLTK_ENV} PATH=${pyFLTK_PATH} DYLD_LIBRARY_PATH=${pyFLTK_DYLD_LIBRARY_PATH} -- )
else()
set(pyFLTK_ENV ${pyFLTK_ENV} LD_LIBRARY_PATH="${pyFLTK_LD_LIBRARY_PATH}" -- )
set(pyFLTK_ENV ${pyFLTK_ENV} PATH=${pyFLTK_PATH} LD_LIBRARY_PATH=${pyFLTK_LD_LIBRARY_PATH} -- )
endif()


Expand Down

0 comments on commit 8cf5183

Please sign in to comment.