Skip to content

Commit

Permalink
perf(cmake): update cmake build type option
Browse files Browse the repository at this point in the history
  • Loading branch information
minhanghuang committed Sep 6, 2023
1 parent 61879ec commit 5399268
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ project(cyber VERSION 8.0.0) # Apollo Version
set(CMAKE_CXX_STANDARD 14)
set(TARGET_NAME ${PROJECT_NAME})
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(CMAKE_BUILD_TYPE Debug) # Debug or Release
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Debug) # Debug/Release
endif()

enable_language(ASM)

Expand Down

0 comments on commit 5399268

Please sign in to comment.