Skip to content

Commit

Permalink
Fix CMAKE_INSTALL_LIBDIR warning
Browse files Browse the repository at this point in the history
  • Loading branch information
magiblot committed Sep 3, 2024
1 parent 81378c4 commit 2abc788
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ option(TURBO_USE_SYSTEM_TVISION "Use system-wide Turbo Vision instead of the sub
option(TURBO_USE_STATIC_RTL "Link against the static version of the runtime library (MSVC only)" OFF)
option(TURBO_OPTIMIZE_BUILD "Use Precompiled Headers and Unity Build for the core library" ON)

include(GNUInstallDirs)

if (${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.15.0")
cmake_policy(SET CMP0091 NEW)
if (TURBO_USE_STATIC_RTL)
Expand All @@ -20,6 +18,8 @@ project (turbo)

set(TURBO_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})

include(GNUInstallDirs)

# Target 'scintilla'

# These two could be built in one single target, but we want to enable Unity Build
Expand Down

0 comments on commit 2abc788

Please sign in to comment.