Skip to content

Commit 9e24f54

Browse files
authored
Don't use project names in common functions (#34)
1 parent b4ce9c3 commit 9e24f54

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

LanguageStandards.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@
1111
# Usage: set a target to conform to company standard
1212
#
1313
# add_executable(target_name main.cpp)
14-
# starling_set_language_standards(target_name)
14+
# swift_set_language_standards(target_name)
1515
#
1616
# Usage: specify your own standards (C++17 and C98) on multiple targets
1717
#
1818
# add_library(library_target file1.c file2.cc)
1919
# add_executable(executable_target main.cpp)
2020
# target_link_libraries(executable_target PRIVATE library_target)
2121
#
22-
# starling_set_language_standards(executable_target library_target
22+
# swift_set_language_standards(executable_target library_target
2323
# C 99
2424
# CXX 17
2525
# )
2626
#
2727

28-
function(starling_set_language_standards)
28+
function(swift_set_language_standards)
2929
set(argOption "")
3030
set(argSingle "C" "CXX")
3131
set(argMulti "")

0 commit comments

Comments
 (0)