You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cpack -G TGZ
In the last step cpack -G ZIP I am error
PS C:\Users\alok\Downloads\tmp\streamlabs\obs-studio-node\build> cpack -G TGZ
Chocolatey v0.10.15
File specified is either not found or not a .nuspec file. 'TGZ'
What is error? How can I fix this to create TGZ file?
The text was updated successfully, but these errors were encountered:
Today I fond the reason why cpack -G TGZ was not working.
Chocolatey's cpack command has a name collision with CMake's cpack
so I need to call cpack with full correct path 'C:\Program Files\CMake\bin\cpack.exe' -G TGZ
I am trying to build
obs-studio-node
by following these steps.git clone https://github.com/stream-labs/obs-studio-node
cd obs-studio-node
yarn install
git submodule update --init --recursive
mkdir build
cd build
cmake .. -G"Visual Studio 16 2019" -A x64
cmake --build .
cpack -G TGZ
In the last step
cpack -G ZIP
I am errorWhat is error? How can I fix this to create
TGZ
file?The text was updated successfully, but these errors were encountered: