{CMAKE_SOURCE_DIR}/vcpkg/scripts/buildsystems/vcpkg.cmake") cmake_minimum_required(VERSION 3.15) project(openmw_web) find_package(Boost REQUIRED) file(GLOB_RECURSE src src/boost_hello_world/*) add_executable(bo
cmake .. -DCMAKE_INSTALL_PREFIX=<path> make -jN (N is the number of processes to use for parallel build, typically number of cores + 1 gives fastest compilation time) make install Windows: Open a command prompt (e.g. cmd.exe) cd retdec mkdir build && cd build cmake .. -DCMAK...