Last active
November 12, 2019 16:05
-
-
Save pperehozhih/a258d00e85d027c56567802bb27f1493 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.13) | |
project(test) | |
set(CMAKE_CXX_STANDARD 17) | |
set(scpm_server_branch "develop") | |
include(scpm.cmake) | |
scpm_install(imgui 1.67) | |
scpm_install(expat R_2_2_5) | |
add_executable(${PROJECT_NAME} main.cpp) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int main(){ | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment