From 829cf6b700e54cded700a6e5d0585633abc55391 Mon Sep 17 00:00:00 2001 From: Anonymous Maarten Date: Fri, 26 Mar 2021 23:58:03 +0100 Subject: [PATCH] cmake: fix playground typo --- tools/playground/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/playground/CMakeLists.txt b/tools/playground/CMakeLists.txt index a41d6a2..cc84d11 100644 --- a/tools/playground/CMakeLists.txt +++ b/tools/playground/CMakeLists.txt @@ -1,13 +1,13 @@ -add_executable(playgound WIN32 +add_executable(playground WIN32 camera.cpp font.cpp main.cpp ras_test.cpp splines.cpp tl_tests.cpp ) -target_link_libraries(playgound +target_link_libraries(playground PUBLIC librw librw_skeleton ) add_custom_command( - TARGET playgound POST_BUILD + TARGET playground POST_BUILD COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${CMAKE_CURRENT_SOURCE_DIR}/teapot.dff" "${CMAKE_CURRENT_SOURCE_DIR}/maze.tga" "${CMAKE_CURRENT_SOURCE_DIR}/Bm437_IBM_VGA8.FON" "${CMAKE_CURRENT_SOURCE_DIR}/Bm437_IBM_BIOS.FON" "$" )