We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71c407f commit 26f5646Copy full SHA for 26f5646
2 files changed
tests/CMakeLists.txt
@@ -1,2 +1,3 @@
1
add_subdirectory(libprojectM)
2
add_subdirectory(playlist)
3
+add_subdirectory(cxx-interface)
tests/cxx-interface/CMakeLists.txt
@@ -12,11 +12,21 @@ project(projectM_CXX_Test
12
13
find_package(projectM4 REQUIRED)
14
15
+if(UNIX AND NOT APPLE)
16
+ find_package(X11 REQUIRED)
17
+endif()
18
+
19
add_executable(projectM4_CXX_Test
20
main.cpp
21
)
22
-target_link_libraries(projectM4_CXX_Test
- libprojectM::projectM
- glad
- )
23
24
+ target_link_libraries(projectM4_CXX_Test
25
+ libprojectM::projectM
26
+ X11::X11
27
+ )
28
+else()
29
30
31
32
0 commit comments