Richard

Results 7 issues of Richard

'goreporter' is not recognized as an internal or external command,operable program or batch file

![Snipaste_2021-05-06_19-35-53](https://user-images.githubusercontent.com/38907693/117292073-56da1580-aea2-11eb-9fff-c9a0581f10c8.png)

![Snipaste_2021-05-07_13-10-11](https://user-images.githubusercontent.com/38907693/117400659-b0d7eb00-af35-11eb-92cb-5d3a6f75fa83.png)

`RuntimeError: CUDA out of memory. Tried to allocate 7.74 GiB (GPU 0; 23.69 GiB total capacity; 18.60 GiB already allocated; 2.78 GiB free; 19.05 GiB reserved in total by PyTorch)...

我对CMake不是很熟悉,我现在想把编译好的framelesshelper文件引入到我自己的项目中的步骤应该是怎样的呀? 这是我的编译过程: ```bash cmake -DCMAKE_PREFIX_PATH=D:\Qt\6.6.0\msvc2019_64\ -DCMAKE_INSTALL_PREFIX=F:/Code_WorkSpace/QtWorkSpace/framelesshelper/build/install -DCMAKE_BUILD_TYPE=Release -GNinja .. -G "Visual Studio 17 2022" ``` ```bash cmake --build . --parallel ``` 然后得到这些文件: ![1](https://github.com/wangwenx190/framelesshelper/assets/38907693/3787b869-f3b9-42ce-95da-e9dfb9271961) 然后把编译好的framelesshelper拷贝到自己项目文件夹 我自己的项目CMakeFiles.txt: ```cmake cmake_minimum_required(VERSION 3.16) project(QMeeting VERSION...