| 123456789101112131415 |
- cmake_minimum_required(VERSION 2.6)
- GETCURRENTFOLDER()
- SET(EXTRALIBS "") #Extra libraries, we have none
- #note the .h files are included so they show up in the windows project
- FILE(GLOB XML_FILES ${RakNet_SOURCE_DIR}/DependentExtensions/XML/*.cpp ${RakNet_SOURCE_DIR}/DependentExtensions/XML/*.h)#grab all files from xml folder and put them in the XML_FILES var
- FILE(GLOB UPNP_FILES ${RakNet_SOURCE_DIR}/DependentExtensions/UPNP/*.cpp UPNP_FILES ${RakNet_SOURCE_DIR}/DependentExtensions/UPNP/*.h) #grab all files from UPNP folder and put them in the UPNP_FILES var
- SET(EXTRASOURCES ${UPNP_FILES} ${XML_FILES}) #set the grabbed files as extra sources
- SET(EXTRAINCLUDES ${RakNet_SOURCE_DIR}/DependentExtensions/XML UPNP_FILES ${RakNet_SOURCE_DIR}/DependentExtensions/UPNP)#add the include directories
- STANDARDSUBPROJECTWITHOPTIONSSET(${current_folder})
- VSUBFOLDER(${current_folder} "Samples/NAT Punchthrough")
|