add missing header to cmake files (else some IDE's wont index it)
This commit is contained in:
@@ -134,7 +134,7 @@ else:
|
|||||||
scons_options.append('BF_FFMPEG_LIB=' + (' '.join(ffmpeg_lib)))
|
scons_options.append('BF_FFMPEG_LIB=' + (' '.join(ffmpeg_lib)))
|
||||||
scons_options.append('BF_FFMPEG_DLL=' + (' '.join(ffmpeg_dll)))
|
scons_options.append('BF_FFMPEG_DLL=' + (' '.join(ffmpeg_dll)))
|
||||||
|
|
||||||
scons_options.append('BF_BITNESS='+bitness)
|
scons_options.append('BF_BITNESS=' + bitness)
|
||||||
|
|
||||||
retcode = subprocess.call(['python', 'scons/scons.py'] + scons_options)
|
retcode = subprocess.call(['python', 'scons/scons.py'] + scons_options)
|
||||||
sys.exit(retcode)
|
sys.exit(retcode)
|
||||||
|
@@ -98,7 +98,7 @@ if builder.find('scons') != -1:
|
|||||||
scons_options.append('BF_FFMPEG_LIB=' + (' '.join(ffmpeg_lib)))
|
scons_options.append('BF_FFMPEG_LIB=' + (' '.join(ffmpeg_lib)))
|
||||||
scons_options.append('BF_FFMPEG_DLL=' + (' '.join(ffmpeg_dll)))
|
scons_options.append('BF_FFMPEG_DLL=' + (' '.join(ffmpeg_dll)))
|
||||||
|
|
||||||
scons_options.append('BF_BITNESS='+bitness)
|
scons_options.append('BF_BITNESS=' + bitness)
|
||||||
|
|
||||||
retcode = subprocess.call(['python', 'scons/scons.py'] + scons_options)
|
retcode = subprocess.call(['python', 'scons/scons.py'] + scons_options)
|
||||||
sys.exit(retcode)
|
sys.exit(retcode)
|
||||||
|
@@ -62,6 +62,10 @@ macro(blender_include_dirs
|
|||||||
foreach(_INC ${ARGV})
|
foreach(_INC ${ARGV})
|
||||||
get_filename_component(_ABS_INC ${_INC} ABSOLUTE)
|
get_filename_component(_ABS_INC ${_INC} ABSOLUTE)
|
||||||
list(APPEND _ALL_INCS ${_ABS_INC})
|
list(APPEND _ALL_INCS ${_ABS_INC})
|
||||||
|
# for checking for invalid includes, disable for regular use
|
||||||
|
##if(NOT EXISTS "${_ABS_INC}/")
|
||||||
|
## message(FATAL_ERROR "Include not found: ${_ABS_INC}/")
|
||||||
|
##endif()
|
||||||
endforeach()
|
endforeach()
|
||||||
include_directories(${_ALL_INCS})
|
include_directories(${_ALL_INCS})
|
||||||
unset(_INC)
|
unset(_INC)
|
||||||
@@ -75,6 +79,9 @@ macro(blender_include_dirs_sys
|
|||||||
foreach(_INC ${ARGV})
|
foreach(_INC ${ARGV})
|
||||||
get_filename_component(_ABS_INC ${_INC} ABSOLUTE)
|
get_filename_component(_ABS_INC ${_INC} ABSOLUTE)
|
||||||
list(APPEND _ALL_INCS ${_ABS_INC})
|
list(APPEND _ALL_INCS ${_ABS_INC})
|
||||||
|
##if(NOT EXISTS "${_ABS_INC}/")
|
||||||
|
## message(FATAL_ERROR "Include not found: ${_ABS_INC}/")
|
||||||
|
##endif()
|
||||||
endforeach()
|
endforeach()
|
||||||
include_directories(SYSTEM ${_ALL_INCS})
|
include_directories(SYSTEM ${_ALL_INCS})
|
||||||
unset(_INC)
|
unset(_INC)
|
||||||
|
@@ -67,6 +67,7 @@ set(SRC
|
|||||||
intern/wm_window.c
|
intern/wm_window.c
|
||||||
|
|
||||||
WM_api.h
|
WM_api.h
|
||||||
|
WM_keymap.h
|
||||||
WM_types.h
|
WM_types.h
|
||||||
wm.h
|
wm.h
|
||||||
wm_cursors.h
|
wm_cursors.h
|
||||||
|
Reference in New Issue
Block a user