TestJenkins/CMakeLists.txt

22 lines
834 B
CMake
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# CMakeList.txt : projet CMake pour TestJenkins, incluez la source et définissez
# la logique spécifique au projet ici.
#
cmake_minimum_required (VERSION 3.8)
# Activez Rechargement à chaud pour les compilateurs MSVC si cela est pris en charge.
if (POLICY CMP0141)
cmake_policy(SET CMP0141 NEW)
set(CMAKE_MSVC_DEBUG_INFORMATION_FORMAT "$<IF:$<AND:$<C_COMPILER_ID:MSVC>,$<CXX_COMPILER_ID:MSVC>>,$<$<CONFIG:Debug,RelWithDebInfo>:EditAndContinue>,$<$<CONFIG:Debug,RelWithDebInfo>:ProgramDatabase>>")
endif()
project ("TestJenkins")
# Ajoutez une source à l'exécutable de ce projet.
add_executable (TestJenkins "TestJenkins.cpp" "TestJenkins.h")
if (CMAKE_VERSION VERSION_GREATER 3.12)
set_property(TARGET TestJenkins PROPERTY CXX_STANDARD 20)
endif()
# TODO: Ajoutez des tests et installez des cibles si nécessaire.