1
0

Updated MSVC side of CMake files after recent changes.

This commit is contained in:
madmaxoft 2014-04-25 23:45:16 +02:00
parent 43cca14763
commit 087210302f

View File

@ -7,10 +7,8 @@ file(GLOB SOURCE
"*.h" "*.h"
) )
# add headers to MSVC project files: # Set files to go to a "Sources" folder in MSVC project files:
if (WIN32) if (MSVC)
file(GLOB HEADERS "*.h")
set(SOURCE ${SOURCE} ${HEADERS})
source_group("Sources" FILES ${SOURCE}) source_group("Sources" FILES ${SOURCE})
endif() endif()