Skip to content

Commit

Permalink
Fix CMake warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ipadjen committed Aug 25, 2023
1 parent 073ad8e commit cd837bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 16 deletions.
15 changes: 1 addition & 14 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- cron: '0 6 1 * *' # Run on the first day of every month at 06:00 UTC

jobs:
build_linux:
build_linux_latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -34,19 +34,6 @@ jobs:
mkdir build && cd build
cmake .. && make -j4
build_linux_1804:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install libcgal-dev libboost-all-dev libeigen3-dev libomp-dev libgdal-dev
- name: Build
run: |
mkdir build && cd build
cmake .. && make -j4
build_macos:
runs-on: macos-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.1)
cmake_minimum_required(VERSION 3.9)

project(city4cfd)

Expand Down
2 changes: 1 addition & 1 deletion tools/prepare_point_cloud/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.1)
cmake_minimum_required(VERSION 3.9)
project(city4cfd_pcprep)

set(CMAKE_CXX_FLAGS "-O3")
Expand Down

0 comments on commit cd837bd

Please sign in to comment.