Skip to content

Commit

Permalink
xrGame: add *.cxx files in cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleivg committed Nov 8, 2018
1 parent 024fb27 commit aa15fbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/utils.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ macro(add_dir DIRS)
file( GLOB ${dir}__INCLUDES_H ${dir} ${dir}/*.h)
file( GLOB ${dir}__INCLUDES_HPP ${dir} ${dir}/*.hpp)
list( APPEND ${PROJECT_NAME}__INCLUDES ${${dir}__INCLUDES_H} ${${dir}__INCLUDES_HPP} )
file( GLOB ${dir}__SOURCES_CPP ${dir} ${dir}/*.cpp)
file( GLOB ${dir}__SOURCES_CPP ${dir} ${dir}/*.cpp ${dir}/*.cxx)
file( GLOB ${dir}__SOURCES_C ${dir} ${dir}/*.c)
list( APPEND ${PROJECT_NAME}__SOURCES ${${dir}__SOURCES_C} ${${dir}__SOURCES_CPP} )
endforeach()
Expand Down

0 comments on commit aa15fbd

Please sign in to comment.