12 lines
251 B
CMake
12 lines
251 B
CMake
cmake_minimum_required(VERSION 3.13)
|
|
project(gemhadar LANGUAGES C)
|
|
|
|
add_subdirectory(lib)
|
|
add_subdirectory(test)
|
|
|
|
add_executable(gemhadar
|
|
"main.c"
|
|
)
|
|
set_property(TARGET gemhadar PROPERTY C_STANDARD 11)
|
|
target_link_libraries(gemhadar gemhadar_lib)
|