Skip to content

Instantly share code, notes, and snippets.

@TheFloatingBrain
Created June 9, 2022 02:43
Show Gist options
  • Save TheFloatingBrain/80cece426427efed6b1f15ca0807d12c to your computer and use it in GitHub Desktop.
Save TheFloatingBrain/80cece426427efed6b1f15ca0807d12c to your computer and use it in GitHub Desktop.
CMakeLists.txt to test early version of dimension3d conan package
cmake_minimum_required(VERSION 2.9)
project(Game) #LANGUAGE CXX)
set(CXX_STANDARD 20)
SET(GCC_COVERAGE_COMPILE_FLAGS "-g")
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
conan_basic_setup()
# Sources
file(GLOB_RECURSE SOURCES Source/*.cpp)
#file(GLOB_RECURSE HEADERS Include/*.h Include/*cpp)
add_executable(Game ${SOURCES})
target_link_libraries(Game PUBLIC ${CONAN_LIBS})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment