cmake_minimum_required(VERSION 3.0 FATAL_ERROR) include_directories(${GSL_INCLUDE_DIR}) link_directories(${GSL_LIBRARY_DIR}) add_executable(gsl_test_sf_log gsl_test_sf_log.cpp) target_link_libraries(gsl_test_sf_log ${GSL_LIBRARIES}) add_executable(gsl_test_sf_airy gsl_test_sf_airy.cpp) target_link_libraries(gsl_test_sf_airy ${GSL_LIBRARIES}) add_executable(gsl_test_monte gsl_test_monte.cpp) target_link_libraries(gsl_test_monte ${GSL_LIBRARIES})