add_executable(whale-core-example-hello-world
  "hello_world.cpp"
)

target_link_libraries(whale-core-example-hello-world
  $<$<BOOL:${MINGW}>:mingw32>
  SDL2::SDL2main
  whale::core-rp-shared
)

if(MSVC)
  include(whale-assets)

  set_target_properties(whale-core-example-hello-world
    PROPERTIES
      VS_DEBUGGER_WORKING_DIRECTORY "${WHL_ASSETS_DIR}"
  )
endif()
