6 lines
193 B
CMake
6 lines
193 B
CMake
|
cmake_minimum_required(VERSION 3.10)
|
||
|
project(gbemu)
|
||
|
FILE(GLOB SRCS *.c)
|
||
|
add_executable(gbemu ${SRCS})
|
||
|
target_include_directories(gbemu PUBLIC ../include)
|
||
|
target_link_libraries(gbemu PUBLIC Lib)
|