mirror of
https://github.com/boostorg/typeof.git
synced 2025-07-31 13:27:30 +02:00
Fix cmake_subdir_test and cmake_install_test
This commit is contained in:
@ -7,5 +7,5 @@
|
||||
int main()
|
||||
{
|
||||
BOOST_AUTO(x, 5);
|
||||
return x == 5;
|
||||
return x == 5? 0: 1;
|
||||
}
|
||||
|
@ -30,7 +30,7 @@ endforeach()
|
||||
# --target check
|
||||
|
||||
add_executable(main main.cpp)
|
||||
target_link_libraries(quick Boost::typeof)
|
||||
target_link_libraries(main Boost::typeof)
|
||||
|
||||
enable_testing()
|
||||
add_test(main main)
|
||||
|
@ -7,5 +7,5 @@
|
||||
int main()
|
||||
{
|
||||
BOOST_AUTO(x, 5);
|
||||
return x == 5;
|
||||
return x == 5? 0: 1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user