Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
yushulx committed Jan 13, 2025
1 parent f8a5507 commit 5f195a6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion litecam/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ set(INCLUDE_DIR ${CMAKE_SOURCE_DIR}/include)

# Define source files for the Camera library
if (WIN32)
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded")
if (CMAKE_BUILD_TYPE STREQUAL "Debug")
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g")
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreadedDebug")
else()
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded")
endif()

set(LIBRARY_SOURCES
src/CameraWindows.cpp
Expand Down
Binary file modified litecam/dist/lib/windows/debug/litecam.dll
Binary file not shown.

0 comments on commit 5f195a6

Please sign in to comment.