Skip to content

Commit

Permalink
Drop extra options for S2 includes/libs
Browse files Browse the repository at this point in the history
  • Loading branch information
rinigus committed Oct 20, 2024
1 parent 1fa4430 commit 6840f9b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
2 changes: 0 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ set(FLAVOR "kirigami" CACHE STRING "Platform to build support for. Supported pla
option(APP_VARIANT_JOLLA_STORE "Set if compiling for Sailfish Jolla Store" OFF)
set(PYTHON_EXE "auto" CACHE STRING "Set python3 executable. If set to 'auto', cmake will try to find it.")
option(RUN_FROM_SOURCE "Run from source, this is mainly intended for easy development" OFF)
set(S2INCLUDES "" CACHE STRING "Custom installed location for s2geometry, includes")
set(S2LIBS "" CACHE STRING "Custom installed location for s2geometry, libs")
option(USE_BUNDLED_GPXPY "Use a bundled version of GPXPY rather than a system-wide version" ON)
option(USE_BUNDLED_GEOMAG "Use a bundled version of geomag rather than a system-wide version" ON)
option(USE_BUNDLED_FLEXPOLYLINE "Use a bundled version of flexible-polyline rather than a system-wide version" ON)
Expand Down
8 changes: 0 additions & 8 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,6 @@ if (APP_VARIANT_JOLLA_STORE)
)
endif()

if(S2INCLUDES)
include_directories(${S2INCLUDES})
endif()

if(S2LIBS)
link_directories(${S2LIBS})
endif()

if(QML_IMPORT_PATH)
add_definitions(-DQML_IMPORT_PATH=${QML_IMPORT_PATH})
endif()
Expand Down

0 comments on commit 6840f9b

Please sign in to comment.