mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Ignore CMake build directories.
This commit is contained in:
parent
1458a6ab23
commit
521e371c60
7
.gitignore
vendored
7
.gitignore
vendored
@ -1,10 +1,4 @@
|
|||||||
.vs
|
.vs
|
||||||
*.opendb
|
|
||||||
*.db
|
|
||||||
*.vcxproj.user
|
|
||||||
x64
|
|
||||||
Release
|
|
||||||
Debug
|
|
||||||
_build
|
_build
|
||||||
_compiler
|
_compiler
|
||||||
tools/*
|
tools/*
|
||||||
@ -36,7 +30,6 @@ profiler/build/win32/Tracy.aps
|
|||||||
extra/vswhere.exe
|
extra/vswhere.exe
|
||||||
extra/tracy-build
|
extra/tracy-build
|
||||||
.cache
|
.cache
|
||||||
build
|
|
||||||
compile_commands.json
|
compile_commands.json
|
||||||
profiler/build/wasm/Tracy-release.*
|
profiler/build/wasm/Tracy-release.*
|
||||||
profiler/build/wasm/Tracy-debug.*
|
profiler/build/wasm/Tracy-debug.*
|
||||||
|
@ -5,6 +5,8 @@ include(cmake/version.cmake)
|
|||||||
|
|
||||||
project(Tracy LANGUAGES CXX VERSION ${TRACY_VERSION_STRING})
|
project(Tracy LANGUAGES CXX VERSION ${TRACY_VERSION_STRING})
|
||||||
|
|
||||||
|
file(GENERATE OUTPUT .gitignore CONTENT "*")
|
||||||
|
|
||||||
if(${BUILD_SHARED_LIBS})
|
if(${BUILD_SHARED_LIBS})
|
||||||
set(DEFAULT_STATIC OFF)
|
set(DEFAULT_STATIC OFF)
|
||||||
else()
|
else()
|
||||||
|
@ -52,3 +52,5 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
|||||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fno-eliminate-unused-debug-types")
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fno-eliminate-unused-debug-types")
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
file(GENERATE OUTPUT .gitignore CONTENT "*")
|
||||||
|
@ -12,6 +12,8 @@ project(
|
|||||||
LANGUAGES C CXX
|
LANGUAGES C CXX
|
||||||
VERSION ${TRACY_VERSION_STRING})
|
VERSION ${TRACY_VERSION_STRING})
|
||||||
|
|
||||||
|
file(GENERATE OUTPUT .gitignore CONTENT "*")
|
||||||
|
|
||||||
# a bit weird but works: include the client cmake config coming from top-level
|
# a bit weird but works: include the client cmake config coming from top-level
|
||||||
# cmake needs us to specify the build subfolder -> client/ this way we can
|
# cmake needs us to specify the build subfolder -> client/ this way we can
|
||||||
# simply link the test executable against TracyClient
|
# simply link the test executable against TracyClient
|
||||||
|
Loading…
Reference in New Issue
Block a user