1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-keygen synced 2026-07-03 11:53:41 +02:00

CMake: set additional install variables on windows.

This commit is contained in:
Henrik Hautakoski 2020-02-21 09:36:21 +01:00
parent ead72a6c5d
commit e5b7f8193e

View file

@ -24,6 +24,8 @@ if (WIN32)
# "Flat" install on windows. # "Flat" install on windows.
set( CMAKE_INSTALL_BINDIR "." ) set( CMAKE_INSTALL_BINDIR "." )
set( CMAKE_INSTALL_DATADIR "." ) set( CMAKE_INSTALL_DATADIR "." )
set( CMAKE_INSTALL_SHAREDIR "." )
set( CMAKE_INSTALL_MANDIR "." )
endif (WIN32) endif (WIN32)
# -------------------------------- # --------------------------------