mirror of
https://github.com/eddyem/improclib.git
synced 2025-12-06 10:45:18 +03:00
15 lines
361 B
CMake
15 lines
361 B
CMake
cmake_minimum_required(VERSION 3.20)
|
|
project(examples)
|
|
|
|
# common includes & library
|
|
include_directories(../)
|
|
link_libraries(usefull_macros improc m)
|
|
|
|
# exe list
|
|
add_executable(equalize equalize.c)
|
|
add_executable(generate generate.c)
|
|
add_executable(genu16 genu16.c)
|
|
add_executable(gauss gauss.c)
|
|
add_executable(poisson poisson.c)
|
|
add_executable(objdet objdet.c)
|