intel / hyperscan

High-performance regular expression matching library
https://www.hyperscan.io
Other
4.71k stars 705 forks source link

Install to a different directory #396

Closed DigiAngel closed 1 year ago

DigiAngel commented 1 year ago

Topic...how do I tell make install to install to a different directory? Thank you.

DigiAngel commented 1 year ago

Anything? Is this app still being developed?

DigiAngel commented 1 year ago

Lack of developer interest.

Markoborodov commented 1 year ago

Topic...how do I tell make install to install to a different directory? Thank you.

@DigiAngel, You can use CMAKE_INSTALL_PREFIX for this. Just configure project with it (cmake -DCMAKE_INSTALL_PREFIX=/my/install/prefix ...) and then make install will use this directory.

More info: https://cmake.org/cmake/help/latest/variable/CMAKE_INSTALL_PREFIX.html

DigiAngel commented 1 year ago

On 2023-03-31 09:22, Andrey Markoborodov wrote:

Topic...how do I tell make install to install to a different directory? Thank you.

@DigiAngel [1], You can use CMAKE_INSTALL_PREFIX for this. Just configure project with it (cmake --prefix /my/install/prefix ...) and then make install will use this directory.

More info: https://cmake.org/cmake/help/latest/variable/CMAKE_INSTALL_PREFIX.html

-- Reply to this email directly, view it on GitHub [2], or unsubscribe [3]. You are receiving this because you were mentioned.Message ID: @.***>

Links:

[1] https://github.com/DigiAngel [2] https://github.com/intel/hyperscan/issues/396#issuecomment-1492115635 [3] https://github.com/notifications/unsubscribe-auth/AAHHH55ZA3GAX25IYWKGFCLW63ZCPANCNFSM6AAAAAAWKUJYJU

Thank you!