Skip to content

Commit 07976ad

Browse files
Fix: CMake relative paths for Termux compatibility (#288)
Co-authored-by: Gemini Cloud AI <[email protected]> Closes #287 Relates to #235
1 parent efd9595 commit 07976ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,5 +157,5 @@ if (SIMSIMD_BUILD_SHARED)
157157
)
158158
endif ()
159159

160-
install(DIRECTORY ./include/ DESTINATION /usr/include/)
161-
install(DIRECTORY ./c/ DESTINATION /usr/src/${PROJECT_NAME}/)
160+
install(DIRECTORY include/ DESTINATION include)
161+
install(DIRECTORY c/ DESTINATION share/doc/${PROJECT_NAME}/src)

0 commit comments

Comments
 (0)