1
0
mirror of https://github.com/EduApps-CDG/OpenDX synced 2024-12-30 09:45:37 +01:00
OpenDX/tests/CMakeLists.txt

13 lines
353 B
CMake
Raw Permalink Normal View History

# This target is "sample" and it is an executable.
# The executable is built from the source file "basic_window.cpp".
pkg_check_modules(GTK4 REQUIRED gtk4)
include_directories(${GTK4_INCLUDE_DIRS})
link_directories(${GTK4_LIBRARY_DIRS})
add_executable(sample basic_window.cpp)
2023-07-29 21:03:57 -03:00
target_link_libraries(sample opendx)
target_link_libraries(sample d3d9)