Previous The main.cpp file |
Parent Developping the test program |
Outline | Next The compilation |
1 2 |
project(HadamardProduct) cmake_minimum_required(VERSION 3.0) |
1 |
add_definitions(-O3)
|
1 |
add_executable(hadamard_product main.cpp)
|
1 2 3 4 5 6 |
project(HadamardProduct) cmake_minimum_required(VERSION 3.0) add_definitions(-O3) add_executable(hadamard_product main.cpp) |
Previous The main.cpp file |
Parent Developping the test program |
Outline | Next The compilation |