Skip to content

Commit

Permalink
standardize on C++17 for all plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
jpswinski committed Nov 8, 2023
1 parent 1eea610 commit e5dce17
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions plugins/gedi/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ add_library (gedi MODULE "")

set_target_properties (gedi PROPERTIES OUTPUT_NAME gedi)
set_target_properties (gedi PROPERTIES PREFIX "")
set_target_properties (gedi PROPERTIES CXX_STANDARD ${CXX_VERSION})

# Prerequisites #
find_package (Lua "5.3")
Expand Down
1 change: 1 addition & 0 deletions plugins/icesat2/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ add_library (icesat2 MODULE "")

set_target_properties (icesat2 PROPERTIES OUTPUT_NAME icesat2)
set_target_properties (icesat2 PROPERTIES PREFIX "")
set_target_properties (icesat2 PROPERTIES CXX_STANDARD ${CXX_VERSION})

# Prerequisites #
find_package (Lua "5.3")
Expand Down
1 change: 1 addition & 0 deletions plugins/landsat/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ add_library (landsat MODULE "")

set_target_properties (landsat PROPERTIES OUTPUT_NAME landsat)
set_target_properties (landsat PROPERTIES PREFIX "")
set_target_properties (landsat PROPERTIES CXX_STANDARD ${CXX_VERSION})

# Prerequisites #
find_package (Lua "5.3")
Expand Down
1 change: 1 addition & 0 deletions plugins/opendata/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ add_library (opendata MODULE "")

set_target_properties (opendata PROPERTIES OUTPUT_NAME opendata)
set_target_properties (opendata PROPERTIES PREFIX "")
set_target_properties (opendata PROPERTIES CXX_STANDARD ${CXX_VERSION})

# Prerequisites #
find_package (Lua "5.3")
Expand Down
1 change: 1 addition & 0 deletions plugins/pgc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ add_library (pgc MODULE "")

set_target_properties (pgc PROPERTIES OUTPUT_NAME pgc)
set_target_properties (pgc PROPERTIES PREFIX "")
set_target_properties (pgc PROPERTIES CXX_STANDARD ${CXX_VERSION})

# Prerequisites #
find_package (Lua "5.3")
Expand Down
1 change: 1 addition & 0 deletions plugins/swot/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ add_library (swot MODULE "")

set_target_properties (swot PROPERTIES OUTPUT_NAME swot)
set_target_properties (swot PROPERTIES PREFIX "")
set_target_properties (swot PROPERTIES CXX_STANDARD ${CXX_VERSION})

# Prerequisites #
find_package (Lua "5.3")
Expand Down
1 change: 1 addition & 0 deletions plugins/usgs3dep/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ add_library (usgs3dep MODULE "")

set_target_properties (usgs3dep PROPERTIES OUTPUT_NAME usgs3dep)
set_target_properties (usgs3dep PROPERTIES PREFIX "")
set_target_properties (usgs3dep PROPERTIES CXX_STANDARD ${CXX_VERSION})

# Prerequisites #
find_package (Lua "5.3")
Expand Down

0 comments on commit e5dce17

Please sign in to comment.