Signed-off-by: Chip Davis cdavis@codeweavers.com --- Makefile.am | 1 + 1 file changed, 1 insertion(+)
diff --git a/Makefile.am b/Makefile.am index 1fdc916..dea0544 100644 --- a/Makefile.am +++ b/Makefile.am @@ -129,6 +129,7 @@ check_PROGRAMS = $(vkd3d_tests) $(vkd3d_cross_tests) AM_DEFAULT_SOURCE_EXT = .c TESTS = $(vkd3d_tests) $(vkd3d_cross_tests) tests_d3d12_LDADD = $(LDADD) @PTHREAD_LIBS@ +tests_vkd3d_api_CFLAGS = @XCB_CFLAGS@ tests_vkd3d_api_LDADD = libvkd3d.la @VULKAN_LIBS@
if BUILD_DEMOS
On Fri, Oct 5, 2018 at 6:39 PM Chip Davis cdavis@codeweavers.com wrote:
Signed-off-by: Chip Davis cdavis@codeweavers.com
Makefile.am | 1 + 1 file changed, 1 insertion(+)
Why do we need XCB_CFLAGS for tests? We should use XCB headers only in demos.
Oh, that's right. I forgot that you had refactored this so that the tests don't use the WSI headers anymore. Please ignore this patch.
October 5, 2018 11:47 AM, "Józef Kucia" joseph.kucia@gmail.com wrote:
On Fri, Oct 5, 2018 at 6:39 PM Chip Davis cdavis@codeweavers.com wrote:
Signed-off-by: Chip Davis cdavis@codeweavers.com
Makefile.am | 1 + 1 file changed, 1 insertion(+)
Why do we need XCB_CFLAGS for tests? We should use XCB headers only in demos.
Chip