Skip to content

Commit

Permalink
Upgrade gcc version
Browse files Browse the repository at this point in the history
  • Loading branch information
jk-ethz committed Apr 6, 2022
1 parent 036693c commit 6d2993d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.0.2)
project(pcd2txt)

set(CMAKE_BUILD_TYPE Release)
set(CMAKE_CXX_FLAGS "-std=c++11")
set(CMAKE_CXX_FLAGS "-std=c++14")

find_package(PCL REQUIRED)
include_directories(${PCL_INCLUDE_DIRS})
Expand All @@ -12,4 +12,4 @@ link_directories(${PCL_LIBRARY_DIRS})

set(MAIN_SOURCE "pcd2txt.cpp")
add_executable(${PROJECT_NAME} ${MAIN_SOURCE})
target_link_libraries(${PROJECT_NAME} ${PCL_LIBRARIES})
target_link_libraries(${PROJECT_NAME} ${PCL_LIBRARIES})

0 comments on commit 6d2993d

Please sign in to comment.