Files
quantum-utils/CMakeLists.txt
Wesley Irvin cfe045acc3 CMake Migration
Moved the build system over to CMake. This build system right now
replicates the same functionality as our bash scripts from earlier. Will
need a lot of refactoring to be more complete, but for now we are fully
on CMake.
2024-02-04 19:13:13 -05:00

11 lines
269 B
CMake

cmake_minimum_required(VERSION 3.28.1)
project(quantum-utils)
add_library(quantum SHARED ./quantum/src/test.c)
add_executable(test_stuff ./test_stuff/src/main.c)
target_link_libraries(test_stuff quantum)
target_include_directories(test_stuff PUBLIC ./quantum/src/)