From 1e1def1d04d84324c846d659bce30b98064468ec Mon Sep 17 00:00:00 2001 From: Cem Karan Date: Tue, 16 Feb 2016 13:53:32 -0500 Subject: [PATCH] Bug fix to examples/CMakeLists.txt to add transparent to WINDOWS_BINARIES. This fix is due to @thomthom on GitHub, who discovered the bug and suggested the fix. Basically, I forgot to add the 'transparent' app to the list of Windows applications, which made a mess of the linker, etc. This fix should take care of it. --- examples/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 86668fd42..71a1d0d99 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -43,7 +43,7 @@ add_executable(filters WIN32 MACOSX_BUNDLE filters.c ${ICON} ${TINYCTHREAD} ${GE target_link_libraries(particles "${CMAKE_THREAD_LIBS_INIT}" "${RT_LIBRARY}") target_link_libraries(filters "${CMAKE_THREAD_LIBS_INIT}" "${RT_LIBRARY}") -set(WINDOWS_BINARIES boing gears heightmap particles simple splitview wave filters) +set(WINDOWS_BINARIES boing gears heightmap particles simple transparent splitview wave filters) set_target_properties(${WINDOWS_BINARIES} PROPERTIES FOLDER "GLFW3/Examples")