add_executable(playground)
target_compile_options(playground PRIVATE ${BLOCKY_CXX_FLAGS})

target_sources(playground
  PRIVATE
    app.hh
    block.cc
    encoder.cc
    exporter.cc
    extractor.cc
    initiator.hh
    input.cc
    input.hh
    input_gradient.cc
    input_imgseq.cc
    input_noise.cc
    main.cc
    player.cc
    sensor.cc
)
target_link_libraries(playground
  PRIVATE
    liblocky
    glew
    glfw
    imgui
    implot
    m
    stb
)