Skip to content

velvid/test-imgui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ImGUI Test Project

Overview

This is a mockup project to learn proper environment configuration for an ImGUI application.

Build steps

Install vcpkg

cd /path/to/install/to # i.e "~/dev/"
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
export VCPKG_DIR=$(pwd)

Configure and build

cd /path/to/this/repo
cmake -B ./build -S . "-DCMAKE_TOOLCHAIN_FILE=$VCPKG_DIR/scripts/buildsystems/vcpkg.cmake"
cmake --build ./build

For VSCode users

To automatically configure, add this in .vscode/settings.json:

{
    "cmake.configureOnOpen": false,
    "cmake.configureSettings": {
        "CMAKE_TOOLCHAIN_FILE": "$VCPKG_DIR/vcpkg/scripts/buildsystems/vcpkg.cmake"
    }
}

This should allow you to build and run through VSCode.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published