From 411f66a2540fa17c736116d865e0ceb0cfe5623b Mon Sep 17 00:00:00 2001 From: jeanne Date: Wed, 11 May 2022 09:54:38 -0700 Subject: Initial commit. --- src/bin/mnist/CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/bin/mnist/CMakeLists.txt (limited to 'src/bin/mnist/CMakeLists.txt') diff --git a/src/bin/mnist/CMakeLists.txt b/src/bin/mnist/CMakeLists.txt new file mode 100644 index 0000000..a6c54f2 --- /dev/null +++ b/src/bin/mnist/CMakeLists.txt @@ -0,0 +1,11 @@ +cmake_minimum_required(VERSION 3.0) + +add_executable(mnist + src/main.c) + +target_link_libraries(mnist PRIVATE + neuralnet + bsd + z) + +target_compile_options(mnist PRIVATE -Wall -Wextra) -- cgit v1.2.3