Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@
*.gch
build/
build-*/
cmake-build-*
/Debug/
./extern/googletest/*
.vscode
.idea
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ install(DIRECTORY
DESTINATION
include)

SET(ENABLE_TESTS On CACHE BOOL "Test variable defaulting to '0'")
if(ENABLE_TESTS)
enable_testing()
add_subdirectory(test)
Expand Down
1 change: 0 additions & 1 deletion include/camp/camp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ For details about use and distribution, please read LICENSE and NOTICE from
#ifndef __CAMP_HPP
#define __CAMP_HPP

#include <array>
#include <type_traits>

#include "camp/defines.hpp"
Expand Down
Loading