Skip to content

Commit

Permalink
Fix LLA native name
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxhy committed Jan 18, 2024
1 parent 117a4e8 commit a837b97
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions installer/LibLogicalAccess.Msm/config.wxi
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?define Win64 = "yes" ?>
<?define PlatformString = "64-bit" ?>
<?define lladir = "..\packages\dll\x86_64\Release" ?>
<?define llaw32dir = "..\..\sources\LibLogicalAccessNet.win32\bin\x86_64\Release" ?>
<?define llaw32dir = "..\..\sources\LibLogicalAccessNet.native\bin\x86_64\Release" ?>
<?define islogkbdhook = "islogkbdhook64.exe" ?>
<?define islogkbdhooklib = "islogkbdhooklib64.dll" ?>
<?define libcrypto = "libcrypto-1_1-x64.dll" ?>
Expand All @@ -15,7 +15,7 @@
<?define Win64 = "no" ?>
<?define PlatformString = "32-bit" ?>
<?define lladir = "..\packages\dll\x86\Release" ?>
<?define llaw32dir = "..\..\sources\LibLogicalAccessNet.win32\bin\x86\Release" ?>
<?define llaw32dir = "..\..\sources\LibLogicalAccessNet.native\bin\x86\Release" ?>
<?define islogkbdhook = "islogkbdhook32.exe" ?>
<?define islogkbdhooklib = "islogkbdhooklib32.dll" ?>
<?define libcrypto = "libcrypto-1_1.dll" ?>
Expand Down
2 changes: 1 addition & 1 deletion sources/LibLogicalAccessNet.native/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ liblogicalaccess_exception_wrap.cxx
liblogicalaccess_crypto_wrap.cxx
lla_std_types_wrap.cxx)

set(TARGET_NAME LogicalAccessNet.native)
set(TARGET_NAME LibLogicalAccessNet.native)

add_library(${TARGET_NAME} SHARED ${LLA_SWIG_SOURCES})
if (MSVC)
Expand Down
1 change: 0 additions & 1 deletion sources/LibLogicalAccessNet.native/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ def requirements(self):

def configure(self):
self.options['LogicalAccess'].LLA_BUILD_UNITTEST = self.options.LLA_BUILD_UNITTEST
self.options['LogicalAccessPrivate'].LLA_BUILD_UNITTEST = self.options.LLA_BUILD_UNITTEST

def configure_cmake(self):
cmake = CMake(self, build_type=self.settings.build_type)
Expand Down

0 comments on commit a837b97

Please sign in to comment.