Skip to content
Snippets Groups Projects
Verified Commit ff0116bf authored by Tobias Frisch's avatar Tobias Frisch
Browse files

[#18] Added some files to gitignore and added cmake debug output

parent 8dc05e71
No related branches found
No related tags found
1 merge request!21Resolve "First Triangle"
Pipeline #24856 passed
# IDE specific files
.project .project
.cproject .cproject
.vs/ .vs/
...@@ -5,6 +7,12 @@ ...@@ -5,6 +7,12 @@
.idea/ .idea/
.editorconfig .editorconfig
# build directories
build/ build/
cmake-build-debug/ cmake-build-debug/
cmake-build-release/ cmake-build-release/
# VS build files and binaries
.exe
.ilk
.pdb
...@@ -46,11 +46,12 @@ include(${vkcv_config}/Sources.cmake) ...@@ -46,11 +46,12 @@ include(${vkcv_config}/Sources.cmake)
# configure everything to use the required dependencies # configure everything to use the required dependencies
include(${vkcv_config}/Libraries.cmake) include(${vkcv_config}/Libraries.cmake)
message("-- Libraries: [ ${vkcv_libraries} ]")
message("-- Flags: [ ${vkcv_flags} ]")
# set the compiler flags for the framework # set the compiler flags for the framework
set(CMAKE_CXX_FLAGS ${vkcv_flags}) set(CMAKE_CXX_FLAGS ${vkcv_flags})
message("-- Flags: [ ${CMAKE_CXX_FLAGS} ]")
# set the compile definitions aka preprocessor variables # set the compile definitions aka preprocessor variables
add_compile_definitions(${vkcv_definitions}) add_compile_definitions(${vkcv_definitions})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment