You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- file(GLOB_RECURSE SOURCES CONFIGURE_DEPENDS "*.cc" "*.CC" "*.cpp" "*.CPP" "*.c++")
- #todo
- file(GLOB_RECURSE stub_engine CONFIGURE_DEPENDS
- "stub_engine/*.cc"
- )
- list(REMOVE_ITEM SOURCES ${stub_engine})
-
- add_library(framework STATIC ${SOURCES})
-
- target_include_directories(framework
- PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
- )
-
- set_target_properties(framework PROPERTIES CXX_STANDARD 11)
-
- target_link_libraries(framework PUBLIC graphengine)
|