We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a44922d + 127872f commit 69a23abCopy full SHA for 69a23ab
.gitignore
@@ -44,3 +44,6 @@ docs/build/
44
# VSCode / clangd IntelliSense
45
.vscode/
46
.cache/
47
+
48
+# CLion / IDEA
49
+.idea/
CMakeLists.txt
@@ -118,6 +118,11 @@ endif()
118
# Installation
119
# ============
120
121
+OPTION(XSIMD_SKIP_INSTALL "Skip installation or not. By default it is OFF" OFF)
122
+if(${XSIMD_SKIP_INSTALL})
123
+ return() # skip installation
124
+endif ()
125
126
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
127
include(JoinPaths)
128
include(GNUInstallDirs)
0 commit comments