aboutsummaryrefslogtreecommitdiffstats
path: root/examples/CMakeLists.txt
blob: 156b6a34bab989a997731aa7f7ef6ce7de5ec354 (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_example)

make_example(simplegame)
make_example(shooter)