You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
359B

  1. project(GlewTest)
  2. cmake_minimum_required(VERSION 3.0.0)
  3. include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
  4. conan_basic_setup()
  5. add_executable(testGlew main.c)
  6. target_compile_definitions(testGlew PUBLIC "${CONAN_DEFINES}")
  7. target_link_libraries(testGlew PUBLIC "${CONAN_LIBS}")
  8. set_target_properties(testGlew PROPERTIES LINK_FLAGS "${CONAN_EXE_LINKER_FLAGS}")