bond/CMakeLists.txt
secXsQuared 5a3f9e3419 - Got rid of bogus callback_func
- Refactored linked list interface.
- Fixed all test cases and made them standalone instead of within the kernel.
2018-03-29 06:00:22 -04:00

16 lines
368 B
CMake

cmake_minimum_required(VERSION 2.8.4)
project(secX)
include_directories(include)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c11")
file(GLOB_RECURSE SOURCE_FILES ./*.h ./*.c)
file(GLOB_RECURSE TestFiles ./test/*.c ./lib/*.c)
add_executable(Workspace ${SOURCE_FILES})
#include_directories(test/include)
#add_definitions(-DTDBG)
#add_executable(Test ${TestFiles})