Files
psat/CMakeLists.txt
gothictomato 7ce1e80739 Added test cases
Signed-off-by: gothictomato <gothictomato@pm.me>
2022-07-17 21:40:34 -04:00

9 lines
292 B
CMake

cmake_minimum_required(VERSION 3.22)
project(psat C)
set(CMAKE_C_STANDARD 99)
# set(CMAKE_C_FLAGS "-O3")
add_executable(psat main.c cnf.c cnf.h time.c time.h types.h gpusolver.c gpusolver.h cpusolver.c cpusolver.h tests/masterTest.c tests/masterTest.h)
target_link_libraries(psat -lOpenCL)