diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-15 17:16:26 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-15 17:16:26 +0300 |
commit | e6cdc6015d7b810dd3dd705b0872a93b18a64ae1 (patch) | |
tree | 8fe391eb27759038f781e27a5b0ec8c1d34053a6 /test | |
parent | lab_rat: decrease total symbol count (diff) | |
download | winapi-debug-e6cdc6015d7b810dd3dd705b0872a93b18a64ae1.tar.gz winapi-debug-e6cdc6015d7b810dd3dd705b0872a93b18a64ae1.zip |
lab_rat -> foobar
Diffstat (limited to 'test')
-rw-r--r-- | test/CMakeLists.txt | 6 | ||||
-rw-r--r-- | test/foobar.cpp (renamed from test/lab_rat.cpp) | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index c910931..619a51e 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,7 +1,7 @@ set(CC_STATIC_RUNTIME OFF) -add_executable(lab_rat lab_rat.cpp) +add_executable(foobar foobar.cpp) -install(TARGETS lab_rat RUNTIME DESTINATION bin) +install(TARGETS foobar RUNTIME DESTINATION bin) if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") - install(FILES "$<TARGET_PDB_FILE:lab_rat>" DESTINATION bin OPTIONAL) + install(FILES "$<TARGET_PDB_FILE:foobar>" DESTINATION bin OPTIONAL) endif() diff --git a/test/lab_rat.cpp b/test/foobar.cpp index ed204b6..cdb8a97 100644 --- a/test/lab_rat.cpp +++ b/test/foobar.cpp @@ -1,4 +1,4 @@ -namespace lab_rat { +namespace foobar_ns { int exit_code = 1; @@ -14,8 +14,8 @@ int foo() { return bar() * 2; } -} // namespace lab_rat +} // namespace foobar_ns int main() { - return lab_rat::foo() * 2; + return foobar_ns::foo() * 2; } |