CMakeLists.txt (326B)
1 cmake_minimum_required(VERSION 3.10) 2 3 project(xtTestConsole) 4 5 add_executable(xtTestConsole) 6 7 set(SOURCES 8 xtTestConsole.cpp 9 ) 10 11 target_sources(xtTestConsole PRIVATE ${SOURCES}) 12 source_group("source" FILES ${SOURCES}) 13 14 target_link_libraries(xtTestConsole PUBLIC xtLib) 15 set_property(TARGET xtTestConsole PROPERTY FOLDER "Xenia")