cmake 编译QT之JKQtPlotter-4.0.3
cmake 编译 JKQtPlotter-4.0.3
1.下载源码
源码地址:https://github.com/jkriege2/JKQtPlotter
2.编译
mkdir build
cd build
DCMAKE_PREFIX_PATH指编译器目录
D:\ProgramFiles\cmake-3.25.0-rc1-windows-i386\bin\cmake.exe -G "Visual Studio 16 2019" -A "x64" " -DCMAKE_PREFIX_PATH=D:/ProgramFiles/Qt6.5.3/6.5.3/msvc2019_64" ..
#Release编译
D:\ProgramFiles\cmake-3.25.0-rc1-windows-i386\bin\cmake.exe --build . --config "Release"
#Debug编译
D:\ProgramFiles\cmake-3.25.0-rc1-windows-i386\bin\cmake.exe --build . --config "Debug"