6.4 Le fichier CMakeLists.txt

Alors, voici le fichier CMakeLists.txt dans toute sa complexité :

1
2
3
4
5
6
project(ProgrammeCuda)
cmake_minimum_required(VERSION 2.8)

find_package(CUDA)

cuda_add_executable("testCuda" calcul_cuda.cu main.c)

Vous pouvez le récupérer ici.