Added WindowTestApp (from test.cpp) alongside ReWalkerApp (from main.cpp)

This commit is contained in:
rich
2025-01-13 10:59:00 -05:00
parent fd63afa355
commit 5526e76476

View File

@@ -33,9 +33,15 @@ CPMAddPackage(
URL URL https://git.redacted.cc/Redacted/ReWindow/archive/Prerelease-31.zip
)
add_executable(ReWalkerApp test.cpp)
add_executable(ReWalkerApp main.cpp)
target_include_directories(ReWalkerApp PUBLIC ${ReWindow_SOURCE_DIR}/include ${J3ML_SOURCE_DIR}/include)
target_link_libraries(ReWalkerApp PUBLIC J3ML ReWindowLibrary)
# simple window test
add_executable(TestWindowApp test.cpp)
target_include_directories(TestWindowApp PUBLIC ${ReWindow_SOURCE_DIR}/include ${J3ML_SOURCE_DIR}/include)
target_link_libraries(TestWindowApp PUBLIC J3ML ReWindowLibrary)