2016-03-26 15:49:05 -05:00
|
|
|
cmake_minimum_required(VERSION 2.8.8)
|
|
|
|
|
|
|
|
#setup libraries
|
|
|
|
|
2017-04-12 00:28:20 -05:00
|
|
|
if(NOT WOMBAT_BUILD_TYPE STREQUAL "GBA")
|
|
|
|
find_package(Qt5Widgets)
|
2016-03-26 15:49:05 -05:00
|
|
|
endif()
|
|
|
|
|
2016-12-24 00:41:57 -06:00
|
|
|
find_package(Ox REQUIRED)
|
|
|
|
include_directories(${Ox_INCLUDE_DIRS})
|
2016-03-26 15:49:05 -05:00
|
|
|
|
2017-04-12 00:28:20 -05:00
|
|
|
|
2016-03-26 15:49:05 -05:00
|
|
|
#project packages
|
|
|
|
|
|
|
|
include_directories(".")
|
|
|
|
|
|
|
|
add_subdirectory(core)
|
|
|
|
add_subdirectory(common)
|
|
|
|
add_subdirectory(player)
|
2017-04-12 00:28:20 -05:00
|
|
|
|
|
|
|
if(NOT WOMBAT_BUILD_TYPE STREQUAL "GBA")
|
|
|
|
add_subdirectory(tools)
|
|
|
|
endif()
|