Skip to content

Commit 63397aa

Browse files
authored
Version Bump 1.0.0 (#5)
Also had to update some CMAKE config to work with project versions
1 parent 2e2e08f commit 63397aa

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

CMakeLists.txt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
project(Loam CXX C)
1+
# CMAKE CONFIG
22
cmake_minimum_required(VERSION 2.8.3)
3-
set (CMAKE_CXX_STANDARD 17)
4-
include(FetchContent)
3+
cmake_policy(SET CMP0048 NEW)
4+
# PROJECT INFO
5+
project(Loam LANGUAGES CXX C VERSION 1.0.0)
6+
set(CMAKE_CXX_STANDARD 17)
57

68
message(STATUS "================ BUILDING LOAM ======================")
79

810
# Dependencies
11+
include(FetchContent)
912
# Eigen - used by ceres and during registration
1013
find_package(Eigen3 REQUIRED)
1114
# Ceres - used to solve ICF in registration

0 commit comments

Comments
 (0)