test(relative-paths): Make `link-libraries` conditional to the Windows platform

main
Anthony Printup 1 year ago
parent 854e8817c4
commit b24a0a2fdc
No known key found for this signature in database
GPG Key ID: C8CB17EEA5183BD0

15
tests/CMakeLists.txt generated

@ -110,16 +110,7 @@ add_test(
build build
) )
add_test( if(WIN32) # windows
NAME
relative-paths-setup
WORKING_DIRECTORY
"${CMAKE_CURRENT_LIST_DIR}/relative-paths"
COMMAND
"$<TARGET_FILE:cmkr>"
"build --target test-library"
)
add_test( add_test(
NAME NAME
relative-paths relative-paths
@ -127,5 +118,7 @@ add_test(
"${CMAKE_CURRENT_LIST_DIR}/relative-paths" "${CMAKE_CURRENT_LIST_DIR}/relative-paths"
COMMAND COMMAND
"$<TARGET_FILE:cmkr>" "$<TARGET_FILE:cmkr>"
"build --target example" build
) )
endif()

@ -60,13 +60,8 @@ command = "$<TARGET_FILE:cmkr>"
arguments = ["build"] arguments = ["build"]
[[test]] [[test]]
name = "relative-paths-setup" condition = "windows"
working-directory = "relative-paths"
command = "$<TARGET_FILE:cmkr>"
arguments = ["build --target test-library"]
[[test]]
name = "relative-paths" name = "relative-paths"
working-directory = "relative-paths" working-directory = "relative-paths"
command = "$<TARGET_FILE:cmkr>" command = "$<TARGET_FILE:cmkr>"
arguments = ["build --target example"] arguments = ["build"]

@ -8,4 +8,4 @@ sources = ["src/library-code.cpp"]
[target.example] [target.example]
type = "executable" type = "executable"
sources = ["src/main.cpp"] sources = ["src/main.cpp"]
link-libraries = ["libs/test-library-file.lib"] windows.link-libraries = ["libs/test-library-x64-Release.lib"]

@ -1,8 +1,12 @@
// Created by Anthony Printup on 9/18/2023. // Created by Anthony Printup on 9/18/2023.
#include <cstdio> #include <cstdio>
#ifdef WIN32
extern "C" void library_function(); extern "C" void library_function();
#endif
int main() { int main() {
puts("Hello from cmkr(relative-paths)!"); puts("Hello from cmkr(relative-paths)!");
#ifdef WIN32
library_function(); library_function();
#endif
} }

Loading…
Cancel
Save