python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Append bin folder to PATH environement variable after installation
I have done a C++ program for Windows and an NSIS installer using CPack.
I want that after the installation, the user can call my program from the terminal without giving the whole path of the exe.
So...
Maxime Charrière
Votes: 0
Answers: 1
CMake CPack NSIS How to pass install location to project?
I have a project written in C. Currently it's using UNIX makefiles to compile itself for Linux, but recently I've been looking into CMake, to be more portable.
The executable, when running, needs to a...

TomTsagk
Votes: 0
Answers: 1
How can I make CPACK include 3rd party DLLs into the installer?
I've written a CMakeLists.txt as shown below:
cmake_minimum_required (VERSION 3.22)
project(tutorial)
set(wxWidgets_CONFIGURATION mswu)
find_package(wxWidgets REQUIRED COMPONENTS net core base)
inc...

Jumogehn
Votes: 0
Answers: 1