Skip to content

Commit

Permalink
Meta: Update CLion configuration to include LibM and generated files
Browse files Browse the repository at this point in the history
Also bumps the CXX Standard to C++20.
  • Loading branch information
Lubrsi authored and awesomekling committed Aug 6, 2020
1 parent 3ba0164 commit 4b6036b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Meta/CLion/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.0)
project(serenity)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD 20)

file(GLOB_RECURSE AK_SOURCES "serenity/AK/*.cpp")
file(GLOB_RECURSE APPLICATIONS_SOURCES "serenity/Applications/*.cpp")
Expand All @@ -24,8 +24,11 @@ set(INCLUDE_DIRS
"serenity/Libraries"
"serenity/Libraries/LibC"
"serenity/Libraries/LibPthread"
"serenity/Libraries/LibM"
"serenity/Services"
"serenity/Toolchain/Local/i686-pc-serenity/include/c++/10.1.0")
"serenity/Toolchain/Local/i686-pc-serenity/include/c++/10.1.0"
"serenity/Build/Services"
"serenity/Build/Libraries")

add_library(serenity
${AK_SOURCES}
Expand Down

0 comments on commit 4b6036b

Please sign in to comment.