From c83d1e93eb3a5b8b6a9db41c2613b206f344f825 Mon Sep 17 00:00:00 2001 From: Sergey Kostanbaev Date: Sat, 26 Jan 2019 02:00:25 +0300 Subject: [PATCH] fix Windows build --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4cda8c6..63aca39 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -58,7 +58,7 @@ include_directories(.) set(USB3380_FILES libusb3380.c) if(CMAKE_SYSTEM_NAME MATCHES "Windows") - set(USB3380_FILES ${USB3380_FILES} xtrx_port.c) + set(USB3380_FILES ${USB3380_FILES} ../libxtrxll/xtrxll_port.c) endif() add_library(usb3380 SHARED ${USB3380_FILES})