cmake_minimum_required(VERSION 3.13) project(snippets) set(CMAKE_CXX_STANDARD 17) add_executable(pM pietMondrian.cpp) # Detect and add SFML set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake_modules" ${CMAKE_MODULE_PATH}) find_package(SFML COMPONENTS system window graphics network audio REQUIRED) if(SFML_FOUND) set(SFML_MODULES sfml-system sfml-window sfml-graphics sfml-network sfml-audio) target_link_libraries(pM ${SFML_MODULES}) endif() if(NOT SFML_FOUND) message(FATAL_ERROR "SFML couldn't be located!") endif() add_executable(coinche Coinche.cpp Coinche.h playCoinche.cpp) find_package(GTest REQUIRED) if(GTest_FOUND) enable_testing() include_directories(${GTEST_INCLUDE_DIRS}) else() message(FATAL_ERROR "GTest pas trouvé") endif() if(GTest_FOUND) add_executable(coincheTest gTestCoinche.cpp Coinche.cpp Coinche.h) target_link_libraries(coincheTest ${GTEST_BOTH_LIBRARIES}) target_link_options(coincheTest PRIVATE -pthread) endif() add_executable(compte_mots compte_mots.cpp) add_library(polynomial SHARED Polynomial.cpp Polynomial.tpp) #target_link_libraries(polynomial -static) if(GTest_FOUND) add_executable(polynomialTest gTestPolynomial.cpp) target_link_libraries(polynomialTest ${GTEST_BOTH_LIBRARIES}) target_link_options(polynomialTest PRIVATE -pthread) target_link_libraries(polynomialTest polynomial) endif()