Skip to content

Commit

Permalink
Merge pull request #3 from ilya-lavrenov/cmake-build-type
Browse files Browse the repository at this point in the history
Added cmake build type before project clause
  • Loading branch information
pavel-esir authored May 10, 2024
2 parents f274b93 + 0849c41 commit 023cf1e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

cmake_minimum_required(VERSION 3.15)

set(CMAKE_BUILD_TYPE "Release" CACHE STRING "CMake build type")
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Release" "Debug" "RelWithDebInfo" "MinSizeRel")

project(openvino_genai)

add_subdirectory(src)
Expand Down

0 comments on commit 023cf1e

Please sign in to comment.