python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
.lib and .dll file size difference on visual studio and cmake
I followed
https://learn.microsoft.com/en-us/cpp/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp?view=msvc-170
to create the dll in debug mode and did the same using cmake.
cmake_minim...
KcFnMi
Votes: 0
Answers: 1
.dll vs .dll with exports, what's the difference?
On Visual Studio 2019 create new project shows the following:
Dynamic-Link Library (DLL)
Dynamic-Link Library with exports (DLL)
Before I though we have static libraries and dynamic libraries.
So w...
KcFnMi
Votes: 0
Answers: 1
Why is the import library .lib bigger than the .dll?
In a cmake project that generates a .dll and corresponding .lib I just noticed the .lib is bigger than the .dll. How is that possible? Isn't the .lib supposed to be much smaller than the .dll?
debug
....
KcFnMi
Votes: 0
Answers: 1
How to include non Vcpkg on CMakeLists.txt?
So I have a project which depends on opencv, which is installed with vcpkg. The project is build with cmake.
CMakeLists.txt
cmake_minimum_required(VERSION 3.19.1)
project(mylib)
set (CMAKE_CXX_STAND...
KcFnMi
Votes: 0
Answers: 1