aboutsummaryrefslogtreecommitdiffstats
path: root/examples/CMakeLists.txt
blob: a75f6528a2d8f630198304fc1d73e72f4a6afcd3 (plain)
1
2
3
4
5
6
7
8
9
10
function(make_example name)

  file(GLOB SOURCES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ${name}/*.cpp)
  add_executable(${name} ${SOURCES})
  target_link_libraries(${name} yage)

endfunction(make_test)

make_example(simplegame)
make_example(shooter)