aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2022-10-25 10:03:24 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2022-10-25 10:03:24 -0400
commite86d6947da39edf7bb840462d70cd49d2fb573cb (patch)
tree7193cf61880ae93f3683a7a0e6a810531b42c575
parentf28f138c997a944c4144de10046f15191ecd88d9 (diff)
downloadsayeth-e86d6947da39edf7bb840462d70cd49d2fb573cb.tar.gz
Fix missing [..]/drivers in DRIVERS_DIR definitionHEADmaster
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 673e65d..523c6ad 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -11,7 +11,7 @@ else()
endif()
add_executable(sayeth main.c driver.c draw.c)
-set(DRIVER_DIR ${CMAKE_INSTALL_PREFIX}/share/${CMAKE_PROJECT_NAME})
+set(DRIVER_DIR ${CMAKE_INSTALL_PREFIX}/share/${CMAKE_PROJECT_NAME}/drivers)
option(DEV_ENABLE "Developer mode" OFF)
if(DEV_ENABLE)