Previous Hello world with CMake |
Parent Main Page |
Outline | Next Several useful CMake functions |
$ mkdir ExampleOptimisationIn this directory we will create other directories :
$ mkdir Performances $ mkdir buildIt will be our project directory, and we have to create a CMakeLists.txt in the ExampleOptimisation directory :
1 2 3 4 |
project(HPC_ASTERICS) cmake_minimum_required(VERSION 3.0) add_subdirectory(Performances) |
1 2 |
project(HPC_ASTERICS) cmake_minimum_required(VERSION 3.0) |
Previous Hello world with CMake |
Parent Main Page |
Outline | Next Several useful CMake functions |