summaryrefslogtreecommitdiffhomepage
path: root/proto-wine
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2020-03-07 07:50:30 +0100
committerStanislaw Halik <sthalik@misaki.pl>2020-03-07 07:50:30 +0100
commitadb5f89b018da33ee7e3aa8a48e5b742129da161 (patch)
tree7c4ac3954cfe33aa1428f6bb9a16fc18da3348e3 /proto-wine
parenteb2752871e7bfbddab36d7641da6660798072f12 (diff)
cmake: make install prefix path variables more clear
Pointed out by: @rvt
Diffstat (limited to 'proto-wine')
-rw-r--r--proto-wine/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto-wine/CMakeLists.txt b/proto-wine/CMakeLists.txt
index b0f18bb2..0beb50e1 100644
--- a/proto-wine/CMakeLists.txt
+++ b/proto-wine/CMakeLists.txt
@@ -16,7 +16,7 @@ if(NOT WIN32)
set(my-rt)
endif()
file(GLOB wine-deps "${CMAKE_CURRENT_SOURCE_DIR}/*.cxx")
- #install(FILES ${wine-deps} DESTINATION "${opentrack-doc-src-pfx}/proto-wine")
+ #install(FILES ${wine-deps} DESTINATION "${opentrack-src}/proto-wine")
add_custom_command(
OUTPUT opentrack-wrapper-wine.exe.so
DEPENDS ${wine-deps}
@@ -27,7 +27,7 @@ if(NOT WIN32)
add_custom_target(wine-wrapper DEPENDS opentrack-wrapper-wine.exe.so)
add_dependencies(opentrack-proto-wine wine-wrapper)
add_dependencies(wine-wrapper opentrack-compat)
- install(FILES "${CMAKE_CURRENT_BINARY_DIR}/opentrack-wrapper-wine.exe.so" DESTINATION ${opentrack-hier-pfx})
+ install(FILES "${CMAKE_CURRENT_BINARY_DIR}/opentrack-wrapper-wine.exe.so" DESTINATION ${opentrack-libexec})
endif()
endif()
endif()