yabgbe/CMakeLists.txt

17 lines
398 B
CMake
Raw Normal View History

2021-07-12 02:54:24 +00:00
# CMakeList.txt : CMake project for GameboyEmu, include source and define
# project specific logic here.
#
cmake_minimum_required (VERSION 3.8)
project ("GameboyEmu")
set(CMAKE_CXX_STANDARD 17)
add_compile_definitions(_CRT_SECURE_NO_WARNINGS)
2021-10-28 16:56:08 +00:00
add_subdirectory("vendor/SDL")
2021-07-12 02:54:24 +00:00
# Add source to this project's executable.
2021-10-28 16:56:08 +00:00
add_subdirectory("src")
2021-07-12 02:54:24 +00:00
# TODO: Add tests and install targets if needed.