Skip to content

Commit

Permalink
Forgot to push this file.
Browse files Browse the repository at this point in the history
  • Loading branch information
darksylinc committed Aug 5, 2023
1 parent 0d996cb commit 3c6edf4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Samples/2.0/Tests/InternalCore/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#-------------------------------------------------------------------
# This file is part of the CMake build system for OGRE-Next
# (Object-oriented Graphics Rendering Engine)
# For the latest info, see http://www.ogre3d.org/
#
# The contents of this file are placed in the public domain. Feel
# free to make use of it in any way you like.
#-------------------------------------------------------------------

macro( add_recursive dir retVal )
file( GLOB_RECURSE ${retVal} ${dir}/*.h ${dir}/*.cpp ${dir}/*.c )
endmacro()

include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)

add_recursive( ./ SOURCE_FILES )

ogre_add_executable(Test_InternalCore WIN32 MACOSX_BUNDLE ${SOURCE_FILES} ${SAMPLE_COMMON_RESOURCES})

target_link_libraries(Test_InternalCore ${OGRE_LIBRARIES} ${OGRE_SAMPLES_LIBRARIES})
ogre_config_sample_lib(Test_InternalCore)
ogre_config_sample_pkg(Test_InternalCore)

0 comments on commit 3c6edf4

Please sign in to comment.